mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 10:46:12 +01:00
13 lines
217 B
Nix
13 lines
217 B
Nix
{ username, ... }:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = "/home/${username}/.files";
|
|
clean = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
extraArgs = "--keep-since 3d --keep 3";
|
|
};
|
|
};
|
|
}
|