nixos-config/system/nix.nix

11 lines
162 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
nix.autoOptimiseStore = true;
nix.gc = {
automatic = true;
2019-11-04 10:01:05 +01:00
dates = "10:00";
2019-10-19 12:55:35 +02:00
options = "--delete-older-than 30d";
};
}