mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
17 lines
222 B
Nix
17 lines
222 B
Nix
{
|
|
config,
|
|
username,
|
|
...
|
|
}: {
|
|
programs.nh = {
|
|
enable = true;
|
|
|
|
clean = {
|
|
enable = !config.nix.gc.automatic;
|
|
dates = "weekly";
|
|
};
|
|
|
|
flake = "/home/${username}/Projects/nixos-config";
|
|
};
|
|
}
|