Switch back to fish as shell

This commit is contained in:
Erwin Boskma 2024-04-12 08:48:08 +02:00
parent acb17e1563
commit 64a8659d45
Signed by: erwin
SSH key fingerprint: SHA256:3F6Cm6I3erRqlBwEghZWAQl6eS5WrGTX1Vs/Evec1lQ

View file

@ -41,7 +41,7 @@ in
"dialout" "dialout"
"input" "input"
] ++ (optional config.hardware.i2c.enable config.hardware.i2c.group); ] ++ (optional config.hardware.i2c.enable config.hardware.i2c.group);
shell = config.home-manager.users.erwin.programs.nushell.package; shell = config.home-manager.users.erwin.programs.fish.package;
openssh.authorizedKeys.keyFiles = [ openssh.authorizedKeys.keyFiles = [
(pkgs.fetchurl { (pkgs.fetchurl {
url = "https://github.com/eboskma.keys"; url = "https://github.com/eboskma.keys";
@ -50,6 +50,8 @@ in
]; ];
}; };
programs.fish.enable = true;
nix.settings.allowed-users = [ "erwin" ]; nix.settings.allowed-users = [ "erwin" ];
}; };
} }