ooknet/home/modules/console/tools/eza.nix
2024-07-15 20:53:35 +12:00

16 lines
211 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;
};
};
}