all repos — nixfiles @ ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee

System and user configuration, managed by nix and home-manager

Update to NixOS unstable

Alan Pearce
commit

ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee

parent

9451fdc13c2af6b0ff74a045127d8f0d0caf06ba

1 file changed, 5 insertions(+), 5 deletions(-)

changed files
M system/settings/configuration/nix.nixsystem/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";