marleyos/modules/home/programs/eza/default.nix

28 lines
444 B
Nix
Raw Normal View History

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