ooknet/modules/home/console/tools/eza.nix

16 lines
229 B
Nix

{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.ooknet.console.tools.eza;
in {
config = mkIf cfg.enable {
programs.eza = {
enable = true;
git = true;
icons = "auto";
};
};
}