mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
9 lines
205 B
Nix
9 lines
205 B
Nix
{ config, ... }: {
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = config.var.configDirectory;
|
|
clean.enable = config.var.autoGarbageCollector;
|
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
|
};
|
|
}
|