hydra: only run native systems on localhost (with kvm)

This commit is contained in:
Astro 2022-06-09 23:43:06 +02:00
parent 54a2234941
commit 9d23783a1c
1 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,7 @@ in {
buildMachines = [ {
hostName = "localhost";
system = lib.concatStringsSep "," (
[ pkgs.system "i686-linux" ] ++
config.boot.binfmt.emulatedSystems
[ pkgs.system "i686-linux" ]
);
supportedFeatures = [ "big-parallel" "benchmark" "kvm" "nixos-test" ];
inherit (config.nix) maxJobs;