diff --git a/flake.nix b/flake.nix index 64db356..776ce98 100644 --- a/flake.nix +++ b/flake.nix @@ -127,6 +127,7 @@ # 5. Remove the uconsoleCrossOverlay workarounds above # 6. Nix auto-dispatches derivations by `system` — no per-package exceptions needed # Example buildMachines config: +# Server dispatches aarch64 builds to uConsole (4 cores, less power): # nix.buildMachines = [{ # hostName = "uConsole.local"; # systems = ["aarch64-linux"]; @@ -134,7 +135,15 @@ # sshUser = "builder"; # sshKey = "/etc/ssh/builder_key"; # }]; -# +# uConsole dispatches x86_64 builds to server (36 cores, 256GB RAM): +# nix.buildMachines = [{ +# hostName = "lazyworkhorse.net"; +# port = 2424; +# systems = ["x86_64-linux"]; +# maxJobs = 36; +# sshUser = "builder"; +# sshKey = "/etc/ssh/builder_key"; +# }]; # ==== How to build natively on uConsole ==== # To native-compile these on the uConsole: