diff options
author | Frankie B <git@diskfloppy.me> | 2023-04-25 22:43:52 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-04-25 22:43:52 +0100 |
commit | f9ebdbfdfa0efb5bb9360f8587e542e2110202af (patch) | |
tree | 4afeb5b6f3377c3ba0ffda46c779df31ad98c388 /hosts/nixbox/configuration.nix | |
parent | e4513b6c532f1c9080ebe75effaafd62e6f745e9 (diff) |
Make fish the default shell
Diffstat (limited to 'hosts/nixbox/configuration.nix')
-rw-r--r-- | hosts/nixbox/configuration.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/nixbox/configuration.nix b/hosts/nixbox/configuration.nix index 00a2fb3..78bb6f7 100644 --- a/hosts/nixbox/configuration.nix +++ b/hosts/nixbox/configuration.nix @@ -97,6 +97,7 @@ # thunderbird ]; initialPassword = "changeme"; + shell = pkgs.fish; }; # Allow unfree packages @@ -113,9 +114,10 @@ nerdfonts jetbrains-mono kitty - fish ]; + programs.fish.enable = true; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; |