Files
NixOS-Configs/modules/core/nix.nix
2026-08-15 16:21:08 -07:00

19 lines
357 B
Nix

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