mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 20:03:56 +00:00
17 lines
330 B
Nix
17 lines
330 B
Nix
|
{ lib, config, True, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.programs.cli.eza;
|
||
|
in {
|
||
|
options = { module.programs.cli.eza = { enable = mkEnableOption ""; }; };
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
programs.eza = True // {
|
||
|
icons = "auto";
|
||
|
extraOptions = [ "--group-directories-first" "--icons=always" ];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|