diff --git a/lib/user.nix b/lib/user.nix index 16382ee..77fce2a 100644 --- a/lib/user.nix +++ b/lib/user.nix @@ -16,15 +16,15 @@ users.${name} = { isNormalUser = name != "root"; extraGroups = [ "wheel" "plugdev" ]; - shell = pkgs.zsh; + shell = pkgs.fish; }; }; - programs.zsh.enable = true; + programs.fish.enable = true; home-manager.users.${name}.imports = [ (mkHomeRole "common") - (mkHomeRole "zsh") + (mkHomeRole "fish") ] ++ roles_mod; };