2024-09-09 19:51:13 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.modules.other.system) username;
|
|
|
|
inherit (lib) mkIf;
|
|
|
|
cfg = config.modules.system.programs.eza;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home-manager.users.${username} = {
|
|
|
|
programs.eza = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.eza;
|
|
|
|
git = true;
|
2024-10-21 11:55:24 +02:00
|
|
|
icons = "auto";
|
2024-09-09 19:51:13 +02:00
|
|
|
enableNushellIntegration = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|