From 789d36717e0cefe89b74ce0a16398a2c8d1194fc Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 15 Mar 2023 08:58:48 +0100 Subject: [PATCH] [General] Use IPv6 address for lule-skywalker builder and enable by default on onther machines --- general.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/general.nix b/general.nix index fd3d303..64d8b5d 100644 --- a/general.nix +++ b/general.nix @@ -136,10 +136,12 @@ in environment.noXlibs = mkIf (cfg.minimal && (!desktopCfg.enable)) true; nix.buildMachines = [] - ++ optional false (mkBuildMachine { - hostName = "luke-skywalker-nixos.local"; - cores = 8; - threads = 16; + # luke-skywalker-nixos + ++ optional (config.networking.hostName != "luke-skywalker-nixos") (mkBuildMachine { + hostName = "2a01:e0a:18e:8670:ae71:8e51:19af:91a4"; + cores = 16; + threads = 32; + x86ver = 3; }) ++ optional false (mkBuildMachine { hostName = "cachan.lesviallon.fr";