initial commit
This commit is contained in:
39
home/programs/alacritty/alacritty.toml
Normal file
39
home/programs/alacritty/alacritty.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
[colors.bright]
|
||||
black = "#5c5855"
|
||||
blue = "#01a0e4"
|
||||
cyan = "#b5e4f4"
|
||||
green = "#01a252"
|
||||
magenta = "#a16a94"
|
||||
red = "#db2d20"
|
||||
white = "#f7f7f7"
|
||||
yellow = "#fded02"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "#a5a2a2"
|
||||
text = "#090300"
|
||||
|
||||
[colors.normal]
|
||||
black = "#090300"
|
||||
blue = "#01a0e4"
|
||||
cyan = "#b5e4f4"
|
||||
green = "#01a252"
|
||||
magenta = "#a16a94"
|
||||
red = "#db2d20"
|
||||
white = "#a5a2a2"
|
||||
yellow = "#fded02"
|
||||
|
||||
[colors.primary]
|
||||
background = "#0d0d0d"
|
||||
foreground = "#a5a2a2"
|
||||
|
||||
[font]
|
||||
size = 7.0
|
||||
[font.normal]
|
||||
family = "monospace"
|
||||
style = "Regular"
|
||||
|
||||
[terminal]
|
||||
|
||||
[terminal.shell]
|
||||
program = "/etc/profiles/per-user/synchronous/bin/zsh"
|
||||
|
||||
11
home/programs/alacritty/default.nix
Normal file
11
home/programs/alacritty/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
builtins,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.alacritty.settings = lib.trivial.importTOML ./alacritty.toml;
|
||||
}
|
||||
Reference in New Issue
Block a user