about summary refs log tree commit diff
path: root/nix/hosts/mba
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/mba')
-rw-r--r--nix/hosts/mba/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/hosts/mba/default.nix b/nix/hosts/mba/default.nix
index d583df6..a9779f8 100644
--- a/nix/hosts/mba/default.nix
+++ b/nix/hosts/mba/default.nix
@@ -1,10 +1,14 @@
-{ self, ... }:
+{ pkgs, self, ... }:
 {
   services.nix-daemon.enable = true;
 
   programs.zsh.enable = true;
+  programs.fish.enable = true;
+
+  environment.shells = [ pkgs.fish pkgs.zsh ];
 
   users.users.fcuny.home = "/Users/fcuny";
+  users.users.fcuny.shell = pkgs.fish;
 
   # Touch ID for sudo auth
   security.pam.enableSudoTouchIdAuth = true;