nixos-config/common/nix.nix
2026-02-16 22:11:39 -08:00

16 lines
353 B
Nix

{config, ...}: {
boot.tmp.cleanOnBoot = true;
nix = {
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = [config.constants.userName];
};
};
nixpkgs.config.allowUnfree = true;
}