diff options
-rw-r--r-- | accounts/gkleen@sif/alacritty.nix | 39 | ||||
-rw-r--r-- | accounts/gkleen@sif/default.nix | 5 | ||||
-rw-r--r-- | system-profiles/openssh/default.nix | 2 |
3 files changed, 45 insertions, 1 deletions
diff --git a/accounts/gkleen@sif/alacritty.nix b/accounts/gkleen@sif/alacritty.nix new file mode 100644 index 00000000..a2c19182 --- /dev/null +++ b/accounts/gkleen@sif/alacritty.nix | |||
@@ -0,0 +1,39 @@ | |||
1 | { | ||
2 | font.size = 5.5; | ||
3 | |||
4 | colors = { | ||
5 | primary.foreground = "#d9d9d9"; | ||
6 | primary.background = "#000000"; | ||
7 | cursor.text = "#000000"; | ||
8 | cursor.cursor = "#d9d9d9"; | ||
9 | |||
10 | normal = { | ||
11 | black = "#000000"; | ||
12 | red = "#bf4949"; | ||
13 | green = "#9fb346"; | ||
14 | yellow = "#e69650"; | ||
15 | blue = "#759fbf"; | ||
16 | magenta = "#9b79a6"; | ||
17 | cyan = "#79a69b"; | ||
18 | white = "#d9d9d9"; | ||
19 | }; | ||
20 | |||
21 | bright = { | ||
22 | black = "#757a80"; | ||
23 | red = "#e66e6e"; | ||
24 | green = "#cbd676"; | ||
25 | yellow = "#ffa74f"; | ||
26 | blue = "#98b8d9"; | ||
27 | magenta = "#ceadd9"; | ||
28 | cyan = "#a3d9ce"; | ||
29 | white = "#ffffff"; | ||
30 | }; | ||
31 | }; | ||
32 | |||
33 | scrolling.history = 0; | ||
34 | |||
35 | bell = { | ||
36 | duration = 75; | ||
37 | color = "#d9d9d9"; | ||
38 | }; | ||
39 | } | ||
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 440efa4e..43ead4f5 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -106,6 +106,11 @@ in { | |||
106 | }; | 106 | }; |
107 | }; | 107 | }; |
108 | 108 | ||
109 | alacritty = { | ||
110 | enable = true; | ||
111 | settings = import ./alacritty.nix; | ||
112 | }; | ||
113 | |||
109 | zathura = { | 114 | zathura = { |
110 | enable = true; | 115 | enable = true; |
111 | package = pkgs.zathura.override { useMupdf = false; }; | 116 | package = pkgs.zathura.override { useMupdf = false; }; |
diff --git a/system-profiles/openssh/default.nix b/system-profiles/openssh/default.nix index 33a3e136..09ff58f7 100644 --- a/system-profiles/openssh/default.nix +++ b/system-profiles/openssh/default.nix | |||
@@ -35,7 +35,7 @@ | |||
35 | }; | 35 | }; |
36 | 36 | ||
37 | environment.systemPackages = lib.mkIf config.services.openssh.enable (with pkgs; [ | 37 | environment.systemPackages = lib.mkIf config.services.openssh.enable (with pkgs; [ |
38 | rxvt_unicode.terminfo | 38 | rxvt_unicode.terminfo alacritty.terminfo |
39 | ]); | 39 | ]); |
40 | }; | 40 | }; |
41 | } | 41 | } |