nix-flake/modules/system/nix-conf.nix
2026-02-01 21:27:03 +07:00

15 lines
No EOL
322 B
Nix

{ ... }: {
nixpkgs.config.allowUnfree = true;
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d -d";
};
optimise.automatic = true;
};
}