16 lines
287 B
Nix
16 lines
287 B
Nix
{
|
|
nix = {
|
|
optimise.automatic = true;
|
|
gc = {
|
|
automatic = true;
|
|
dates = "daily";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
};
|
|
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
dates = "daily";
|
|
# do not forget to set `flake` when using this module!
|
|
};
|
|
}
|