diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-23 11:33:33 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-23 11:33:33 -0400 |
| commit | 6f43ac771d216d74abc2e95efbbebc6e12f0e0c2 (patch) | |
| tree | 334083e50448bf7ccb718789142caeb67064ce0c /configuration.nix | |
| parent | zsh and tmux config added (diff) | |
| download | nixos-6f43ac771d216d74abc2e95efbbebc6e12f0e0c2.tar.gz nixos-6f43ac771d216d74abc2e95efbbebc6e12f0e0c2.tar.bz2 nixos-6f43ac771d216d74abc2e95efbbebc6e12f0e0c2.zip | |
change to fish as default shell
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index bb6bfe2..17e41c9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,9 +20,9 @@ boot.loader.efi.canTouchEfiVariables = true; # zsh - environment.shells = with pkgs; [ zsh ]; - users.defaultUserShell = pkgs.zsh; - programs.zsh.enable = true; + environment.shells = with pkgs; [ fish ]; + users.defaultUserShell = pkgs.fish; + programs.fish.enable = true; # Use latest kernel. boot.kernelPackages = pkgs.linuxPackages_latest; |
