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

16 lines
215 B
Nix

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