nix-config/hosts/common/nix.nix
2022-12-22 22:38:12 -03:00

14 lines
313 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
nix = {
settings.auto-optimise-store = true;
extraOptions = "experimental-features = nix-command flakes";
gc = { # Garbage collector
automatic = true;
options = "--delete-older-than 8d";
};
};
system.stateVersion = "22.05";
}