chore: fix tpyo

This commit is contained in:
truxnell 2024-03-25 22:55:12 +11:00
parent e6243b48ba
commit e46eba32a6
2 changed files with 9 additions and 21 deletions

View file

@ -20,27 +20,16 @@ in
}; };
} };
# Install fish systemwide # Install fish systemwide
config.programs.fish = mkIf cfg.enable { config.programs.fish = mkIf cfg.enable {
enable = true; enable = true;
vendor = { vendor = {
completions.enable = true; completions.enable = true;
config.enable = true; config.enable = true;
functions.enable = true; functions.enable = true;
};
}; };
};
# Install fish plugins systemwide
config.mySystem.system.packages = with pkgs; mkIf cfg.enable [
fishPlugins.done
fishPlugins.fzf-fish
fishPlugins.forgit
fishPlugins.hydro
fzf
fishPlugins.grc
grc
];
} }

View file

@ -6,7 +6,6 @@
with lib; with lib;
{ {
config.mySystem.shell.fish.plugins = true;
config.boot = { config.boot = {
binfmt.emulatedSystems = [ "aarch64-linux" ]; # Enabled for raspi4 compilation binfmt.emulatedSystems = [ "aarch64-linux" ]; # Enabled for raspi4 compilation