punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
32 lines
480 B
Nix
32 lines
480 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.eza;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.eza";
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.eza = {
|
|
enable = true;
|
|
|
|
git = true;
|
|
icons = "always";
|
|
colors = "always";
|
|
|
|
extraOptions = [
|
|
"--all"
|
|
"--sort=name"
|
|
"--group-directories-first"
|
|
"--header"
|
|
"--group"
|
|
];
|
|
};
|
|
};
|
|
}
|