15 lines
280 B
Nix
15 lines
280 B
Nix
{...}: {
|
|
flake.nixosModules.nixos-system = {...}: {
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
optimise = {
|
|
automatic = true;
|
|
dates = ["weekly"];
|
|
};
|
|
};
|
|
};
|
|
}
|