diff options
Diffstat (limited to '')
| -rw-r--r-- | nix/users/fcuny/shell.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix index b415038..ca55c13 100644 --- a/nix/users/fcuny/shell.nix +++ b/nix/users/fcuny/shell.nix @@ -36,6 +36,18 @@ in ] ++ (lib.optionals (isLinux) [ htop ]); + # https://github.com/nix-community/home-manager/blob/master/modules/programs/alacritty.nix + programs.alacritty = { + enable = true; + settings = { + env.TERM = "xterm-256color"; + font = { + normal.family = "Source Code Pro"; + size = 15.0; + }; + }; + }; + # https://github.com/nix-community/home-manager/blob/master/modules/programs/fish.nix programs.fish = { enable = true; |
