aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;