[General] Use IPv6 address for lule-skywalker builder and enable by default on onther machines

This commit is contained in:
Antoine Viallon 2023-03-15 08:58:48 +01:00
parent e9f28fddfa
commit 789d36717e
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -136,10 +136,12 @@ in
environment.noXlibs = mkIf (cfg.minimal && (!desktopCfg.enable)) true; environment.noXlibs = mkIf (cfg.minimal && (!desktopCfg.enable)) true;
nix.buildMachines = [] nix.buildMachines = []
++ optional false (mkBuildMachine { # luke-skywalker-nixos
hostName = "luke-skywalker-nixos.local"; ++ optional (config.networking.hostName != "luke-skywalker-nixos") (mkBuildMachine {
cores = 8; hostName = "2a01:e0a:18e:8670:ae71:8e51:19af:91a4";
threads = 16; cores = 16;
threads = 32;
x86ver = 3;
}) })
++ optional false (mkBuildMachine { ++ optional false (mkBuildMachine {
hostName = "cachan.lesviallon.fr"; hostName = "cachan.lesviallon.fr";