refactor(home:fish): split config

This commit is contained in:
ooks-io 2024-07-15 12:37:19 +12:00
parent 8f903a742a
commit 546ee5f965
5 changed files with 83 additions and 28 deletions

View file

@ -0,0 +1,29 @@
{ lib, config, pkgs, osConfig, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.shell.fish;
admin = osConfig.ooknet.host.admin;
in
{
config = mkIf (cfg.enable || admin.shell == "fish") {
programs.fish = {
plugins = [
{
name = "done";
src = pkgs.fishPlugins.done.src;
}
{
name = "autopair";
src = pkgs.fishPlugins.autopair.src;
}
{
name = "colored-man-pages";
src = pkgs.fishPlugins.colored-man-pages.src;
}
];
};
};
}