From c04f0b8f4220d68425d6b3a743321f598cac5f93 Mon Sep 17 00:00:00 2001 From: Tristan Druyen Date: Thu, 17 Oct 2024 15:39:27 +0200 Subject: [PATCH] fix: Remove unused build machines for now --- systems/nixos-fw16/default.nix | 70 +++++++++++++++++----------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/systems/nixos-fw16/default.nix b/systems/nixos-fw16/default.nix index 0ab04ee..558050f 100644 --- a/systems/nixos-fw16/default.nix +++ b/systems/nixos-fw16/default.nix @@ -28,41 +28,41 @@ nix.settings.builders-use-substitutes = true; nix.distributedBuilds = true; - nix.buildMachines = [ - { - hostName = "nixremote@nixos-desk"; - system = "x86_64-linux"; - protocol = "ssh"; - maxJobs = 2; - speedFactor = 0; - supportedFeatures = [ - "benchmark" - "big-parallel" - "kvm" - "nixos-test" - "gccarch-x86-64-v3" - "gccarch-znver3" - ]; - - mandatoryFeatures = [ ]; - } - { - hostName = "nixremote@nixos-pulse"; - system = "x86_64-linux"; - protocol = "ssh"; - maxJobs = 0; - speedFactor = 1; - supportedFeatures = [ - "benchmark" - "big-parallel" - "kvm" - "nixos-test" - "gccarch-x86-64-v3" - "gccarch-znver2" - ]; - mandatoryFeatures = [ ]; - } - ]; + nix.buildMachines = [ ]; + # [ + # { + # hostName = "nixremote@nixos-desk"; + # system = "x86_64-linux"; + # protocol = "ssh"; + # maxJobs = 0; + # speedFactor = 0; + # supportedFeatures = [ + # "benchmark" + # "big-parallel" + # "kvm" + # "nixos-test" + # "gccarch-x86-64-v3" + # "gccarch-znver3" + # ]; + # mandatoryFeatures = [ ]; + # } + # { + # hostName = "nixremote@nixos-pulse"; + # system = "x86_64-linux"; + # protocol = "ssh"; + # maxJobs = 0; + # speedFactor = 1; + # supportedFeatures = [ + # "benchmark" + # "big-parallel" + # "kvm" + # "nixos-test" + # "gccarch-x86-64-v3" + # "gccarch-znver2" + # ]; + # mandatoryFeatures = [ ]; + # } + # ]; #################### systemd.user = {