Files
Nixos-Config/modules/system/nix.nix
2026-04-20 15:08:47 +00:00

24 lines
463 B
Nix

# ==========================================
# NIX CONFIGURATION
# ==========================================
{ config, pkgs, ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
max-jobs = "auto";
cores = 0;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.11";
}