aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-01-03 08:26:36 -0800
committerFranck Cuny <franck@fcuny.net>2025-01-03 08:26:36 -0800
commit5fb00af62a98d59f4543f693fc42944fd1a23791 (patch)
tree285ae181a46588ea52da0f841cd02857fa8dd85f /nix
parentfewer fonts (diff)
downloadinfra-5fb00af62a98d59f4543f693fc42944fd1a23791.tar.gz
replace iterm2 with alacritty
Diffstat (limited to 'nix')
-rw-r--r--nix/machines/darwin-shared.nix1
-rw-r--r--nix/users/fcuny/shell.nix12
2 files changed, 12 insertions, 1 deletions
diff --git a/nix/machines/darwin-shared.nix b/nix/machines/darwin-shared.nix
index 79f1933..6836409 100644
--- a/nix/machines/darwin-shared.nix
+++ b/nix/machines/darwin-shared.nix
@@ -73,7 +73,6 @@
"1password-cli"
"docker"
"element"
- "iterm2"
"transmission"
"vlc"
"wireshark"
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;