nichts/modules/tui/yazi.nix
LarsZauberer 56a56859d5 Add yazi
2024-04-14 10:03:43 +02:00

18 lines
435 B
Nix

{ config, lib, ... }:
with lib; let
cfg = config.modules.programs.yazi;
username = 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;
enableZshIntegration = true;
};
};
};
}