20 lines
381 B
Nix
20 lines
381 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.modules.programs.yazi;
|
|
inherit (config.modules.other.system) username;
|
|
in {
|
|
options.modules.programs.yazi = {enable = mkEnableOption "yazi";};
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.${username} = {
|
|
programs.yazi = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
};
|
|
};
|
|
}
|