mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
20 lines
287 B
Nix
20 lines
287 B
Nix
|
{
|
||
|
pkgs,
|
||
|
username,
|
||
|
...
|
||
|
}: {
|
||
|
programs.nh = {
|
||
|
enable = true;
|
||
|
clean = {
|
||
|
enable = true;
|
||
|
extraArgs = "--keep-since 7d --keep 5";
|
||
|
};
|
||
|
flake = "/home/${username}/zaneyos";
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
nix-output-monitor
|
||
|
nvd
|
||
|
];
|
||
|
}
|