diff --git a/users/profiles/shells/fish.nix b/users/profiles/shells/fish.nix index 9ea16f1..82b1201 100644 --- a/users/profiles/shells/fish.nix +++ b/users/profiles/shells/fish.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: { +{ config, lib, pkgs, ... }: { programs = { fish = { enable = true; @@ -8,4 +8,6 @@ starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true; }; + + environment.shells = [ pkgs.fish ]; }