Some checks failed
Build NixOS Configurations / build (carbon) (push) Successful in 6m2s
Build NixOS Configurations / build (git) (push) Successful in 1m41s
Build NixOS Configurations / build (gospel) (push) Successful in 3m20s
Build NixOS Configurations / build (node) (push) Failing after 40s
22 lines
335 B
Nix
22 lines
335 B
Nix
{
|
|
config,
|
|
lib,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.${namespace}.programs.yazi;
|
|
in
|
|
{
|
|
options.${namespace}.programs.yazi = {
|
|
enable = lib.mkEnableOption "yazi";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.yazi = {
|
|
enable = true;
|
|
shellWrapperName = "y";
|
|
};
|
|
catppuccin.yazi.enable = true;
|
|
};
|
|
}
|