ooknet/home/modules/console/shell/fish/functions.nix
2024-07-15 20:53:35 +12:00

17 lines
274 B
Nix

{ lib, config, 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.functions = {
man = ''
:q
''
};
};
}