nixos/system/nix.nix
2024-06-07 16:05:16 +02:00

17 lines
353 B
Nix

{...}: {
nix = {
gc = {
automatic = true;
dates = "05:30";
options = "--delete-older-than 7d";
};
settings = {
keep-outputs = true;
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = ["root" "@wheel"];
};
};
nixpkgs.config.allowUnfree = true;
}