From 72ee75f712fe89416667411492698752ad690616 Mon Sep 17 00:00:00 2001 From: emily Date: Wed, 24 Jul 2024 13:25:21 +0200 Subject: [PATCH] Remove system feature --- config/profiles/builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/profiles/builder.nix b/config/profiles/builder.nix index 8408085..938c684 100644 --- a/config/profiles/builder.nix +++ b/config/profiles/builder.nix @@ -3,7 +3,7 @@ nix.gc.options = lib.mkForce "--delete-older-than 60d"; nix.settings = { trusted-users = [ "build" ]; - system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++ lib.optionals pkgs.hostPlatform.isx86_64 [ "gccarch-x86-64-v3" ]; + #system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++ lib.optionals pkgs.hostPlatform.isx86_64 [ "gccarch-x86-64-v3" ]; }; nix.extraOptions = '' min-free = ${builtins.toString (4096 * 1024 * 1024)}