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

14 lines
173 B
Nix

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