nix-dotfiles/modules/software/tools/eza.nix
2024-05-30 23:13:24 -07:00

15 lines
No EOL
311 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.software.tools.eza;
in {
options.modules.software.tools.eza = {
enable = mkEnableOption "Enable eza, a modern replacement for ls";
};
config = mkIf cfg.enable {
hm.programs.eza.enable = true;
hm.programs.eza.git = true;
};
}