diff --git a/os/builder.nix b/os/builder.nix index 5fea133..fc9c132 100644 --- a/os/builder.nix +++ b/os/builder.nix @@ -17,13 +17,9 @@ in users.groups.remotebuild = {}; nix.settings.extra-trusted-users = [ "remotebuild" ]; - nix.settings.system-features = [ - "benchmark" - "big-parallel" - "ca-derivations" - "kvm" - "nixos-test" + nix.settings.extra-system-features = [ "gccarch-x86-64-v2" "gccarch-x86-64-v3" + "gccarch-znver2" ]; } diff --git a/os/hs/configuration.nix b/os/hs/configuration.nix index bdd1ca6..2d718e2 100644 --- a/os/hs/configuration.nix +++ b/os/hs/configuration.nix @@ -157,4 +157,6 @@ in { supportedFeatures = [ "nixos-test" "big-parallel" "kvm" "gccarch-x86-64-v3" ]; } ]; + + nix.settings.store-auto-optimise = true; }