From ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 7 Oct 2022 22:45:00 +0200 Subject: Update to NixOS unstable --- system/settings/configuration/nix.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'system/settings/configuration/nix.nix') diff --git a/system/settings/configuration/nix.nix b/system/settings/configuration/nix.nix index f4756d58..f152ac27 100644 --- a/system/settings/configuration/nix.nix +++ b/system/settings/configuration/nix.nix @@ -1,21 +1,21 @@ { config, pkgs, ... }: { nix = { - buildCores = 0; + settings = { + cores = 0; + auto-optimise-store = true; + trusted-users = [ "@wheel" ]; + }; daemonCPUSchedPolicy = "idle"; daemonIOSchedClass = "idle"; - trustedUsers = [ "@wheel" ]; - - package = pkgs.nixFlakes; extraOptions = '' keep-outputs = true keep-derivations = true experimental-features = nix-command flakes ''; - autoOptimiseStore = true; gc = { automatic = true; options = "--delete-older-than 14d"; -- cgit 1.4.1