Common/fish: enable fish

This commit is contained in:
Toast 2024-05-25 17:01:38 +02:00
parent 617a0b2356
commit 46678f11f1
2 changed files with 12 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./helix.nix
./direnv.nix
./atuin.nix
./fish.nix
];
# Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,11 @@
{...}: {
programs.fish = {
enable = true;
};
home-manager.users.toast = {
programs.fish = {
enable = true;
};
};
}