diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-01-03 08:26:36 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-01-03 08:26:36 -0800 |
| commit | 5fb00af62a98d59f4543f693fc42944fd1a23791 (patch) | |
| tree | 285ae181a46588ea52da0f841cd02857fa8dd85f /nix/users | |
| parent | fewer fonts (diff) | |
| download | infra-5fb00af62a98d59f4543f693fc42944fd1a23791.tar.gz | |
replace iterm2 with alacritty
Diffstat (limited to 'nix/users')
| -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; |
