Try enabling fish like this

This commit is contained in:
RealStickman 2023-04-17 21:22:58 +02:00
parent a6749a9037
commit f2199d0342
2 changed files with 5 additions and 2 deletions

View File

@ -26,6 +26,11 @@ in
};
};
# Enable completions by nix
programs.fish.enable = true;
environment.shells = [ pkgs.fish ];
networking.hostName = "${hostname}"; # Define your hostname.
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View File

@ -11,8 +11,6 @@ in
# root home
programs.fish.enable = true;
# keep everything using home manager within this block
home-manager.users.${user} = { pkgs, ... }: {
home.username = "${user}";