marleyos/modules/home/programs/eza.nix
2025-05-26 19:06:45 -07:00

27 lines
444 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.eza;
in {
options.marleyos.programs.eza.enable = lib.mkEnableOption "eza";
config = lib.mkIf cfg.enable {
programs.eza = {
enable = true;
git = true;
icons = "always";
colors = "always";
extraOptions = [
"--all"
"--sort=name"
"--group-directories-first"
"--header"
"--group"
];
};
};
}