make use of systemPackage

This commit is contained in:
Moritz Böhme 2022-10-06 20:32:21 +02:00
parent aa42f6678e
commit 85de3b3ac6
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
8 changed files with 97 additions and 103 deletions

View file

@ -25,6 +25,7 @@ in
config = lib.mkIf cfg.enable {
# set as default shell
users.users.moritz.shell = pkgs.fish;
environment.systemPackages = with pkgs.fishPlugins; [ fzf-fish pisces ];
# needed for nix completions
programs.fish.enable = true;
@ -88,7 +89,6 @@ in
fzf.enableFishIntegration = true;
starship.enableFishIntegration = true;
};
home.packages = with pkgs.fishPlugins; [ fzf-fish pisces ];
};
};
}