From 9b7faa8017437d857ef645cb557a783a8a412fe1 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 31 Oct 2025 12:01:49 +0100 Subject: [PATCH] remove builders for hs --- os/hs/configuration.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/os/hs/configuration.nix b/os/hs/configuration.nix index d3f73b4..e243959 100644 --- a/os/hs/configuration.nix +++ b/os/hs/configuration.nix @@ -145,18 +145,18 @@ in { secretKeyFile = "/var/cache-priv-key.pem"; }; - nix.distributedBuilds = true; - nix.settings.builders-use-substitutes = true; - nix.buildMachines = [ - { - hostName = "192.168.1.2"; - protocol = "ssh-ng"; - sshUser = "remotebuild"; - sshKey = "/home/ant/.ssh/id_ed25519"; - system = pkgs.stdenv.hostPlatform.system; - supportedFeatures = [ "nixos-test" "big-parallel" "kvm" "gccarch-x86-64-v3" ]; - } - ]; + # nix.distributedBuilds = true; + # nix.settings.builders-use-substitutes = true; + # nix.buildMachines = [ + # { + # hostName = "192.168.1.2"; + # protocol = "ssh-ng"; + # sshUser = "remotebuild"; + # sshKey = "/home/ant/.ssh/id_ed25519"; + # system = pkgs.stdenv.hostPlatform.system; + # supportedFeatures = [ "nixos-test" "big-parallel" "kvm" "gccarch-x86-64-v3" ]; + # } + # ]; nix.settings.auto-optimise-store = true; }