diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/default.nix | 4 | ||||
-rw-r--r-- | hosts/common/system/users.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/common/system/default.nix b/hosts/common/system/default.nix index 7d8fe9b..f519766 100644 --- a/hosts/common/system/default.nix +++ b/hosts/common/system/default.nix @@ -1,4 +1,4 @@ -{pkgs, ... }: +{ pkgs, ... }: { imports = [ @@ -19,5 +19,5 @@ }; # It's always useful to have bash around - environment.shells = [ pkgs.bashInteractive pkgs.zsh ]; + environment.shells = [ pkgs.bashInteractive pkgs.zsh pkgs.fish ]; } diff --git a/hosts/common/system/users.nix b/hosts/common/system/users.nix index 95c9027..3b4dfaa 100644 --- a/hosts/common/system/users.nix +++ b/hosts/common/system/users.nix @@ -11,7 +11,7 @@ uid = 1000; group = "fcuny"; home = "/home/fcuny"; - shell = pkgs.zsh; + shell = pkgs.fish; extraGroups = [ "users" "wheel" ]; hashedPassword = "$6$i.z1brxtb44JAEco$fDD2Izl.zRR9vBCB2VBKPScChGw38EEl7QEiBTJ/EwgP3oSL0X3ZHq0PJ.RtqzBsWTPUjl4F3MKOBMhnaAPr6."; |