From 024b8ed6d8776f89f0181e3bed5cd4753a2119b7 Mon Sep 17 00:00:00 2001 From: osbm Date: Sun, 7 Sep 2025 21:12:56 +0300 Subject: [PATCH] only allow pochita to do ts --- modules/remote-builds.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/modules/remote-builds.nix b/modules/remote-builds.nix index 116dfa4..0f8917d 100644 --- a/modules/remote-builds.nix +++ b/modules/remote-builds.nix @@ -6,7 +6,7 @@ }: { config = lib.mkMerge [ - (lib.mkIf (config.networking.hostName != "ymir") { + (lib.mkIf (config.networking.hostName == "pochita") { nix.distributedBuilds = true; # nix.settings.builders-use-substitutes = true; nix.buildMachines = [ @@ -18,12 +18,6 @@ sshUser = "osbm"; protocol = "ssh-ng"; } - ]; - }) - (lib.mkIf (config.networking.hostName != "wallfacer") { - nix.distributedBuilds = true; - # nix.settings.builders-use-substitutes = true; - nix.buildMachines = [ { hostName = "wallfacer"; systems = ["x86_64-linux"];