diff options
author | Minijackson <minijackson@riseup.net> | 2025-01-20 18:42:12 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2025-01-20 18:42:12 +0100 |
commit | ba7b8d6b85594981c9dcca0448d549cd4e313b8b (patch) | |
tree | 23093a88c9835221ae133ff4f39edcc9c6aebe2f /common/commandline | |
parent | a58ef3f816c19f212f24172ff2075be17bd7c29a (diff) | |
download | nixos-config-reborn-ba7b8d6b85594981c9dcca0448d549cd4e313b8b.tar.gz nixos-config-reborn-ba7b8d6b85594981c9dcca0448d549cd4e313b8b.zip |
common/fish: switch to fish by default instead of zsh
Diffstat (limited to 'common/commandline')
-rw-r--r-- | common/commandline/fish.nix | 2 | ||||
-rw-r--r-- | common/commandline/zsh.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/commandline/fish.nix b/common/commandline/fish.nix index 6e67865..dabe819 100644 --- a/common/commandline/fish.nix +++ b/common/commandline/fish.nix | |||
@@ -59,6 +59,8 @@ | |||
59 | }; | 59 | }; |
60 | }; | 60 | }; |
61 | 61 | ||
62 | users.defaultUserShell = pkgs.fish; | ||
63 | |||
62 | environment.systemPackages = [ | 64 | environment.systemPackages = [ |
63 | pkgs.fishPlugins.fish-bd | 65 | pkgs.fishPlugins.fish-bd |
64 | pkgs.fishPlugins.grc | 66 | pkgs.fishPlugins.grc |
diff --git a/common/commandline/zsh.nix b/common/commandline/zsh.nix index 8f818dc..79e14c1 100644 --- a/common/commandline/zsh.nix +++ b/common/commandline/zsh.nix | |||
@@ -57,8 +57,6 @@ in | |||
57 | ]; | 57 | ]; |
58 | }; | 58 | }; |
59 | 59 | ||
60 | users.defaultUserShell = pkgs.zsh; | ||
61 | |||
62 | home-manager.sharedModules = [ | 60 | home-manager.sharedModules = [ |
63 | ( | 61 | ( |
64 | { config, ... }: | 62 | { config, ... }: |