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

32 lines
474 B
Nix
Raw Normal View History

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