16 lines
211 B
Nix
16 lines
211 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
inherit (lib) mkIf;
|
|
cfg = config.ooknet.tools.eza;
|
|
in
|
|
|
|
{
|
|
config = mkIf cfg.enable {
|
|
programs.eza = {
|
|
enable = true;
|
|
git = true;
|
|
icons = true;
|
|
};
|
|
};
|
|
}
|