docs: correct maxJobs in remote builder notes (uConsole=4, server=36)
This commit is contained in:
11
flake.nix
11
flake.nix
@@ -127,6 +127,7 @@
|
|||||||
# 5. Remove the uconsoleCrossOverlay workarounds above
|
# 5. Remove the uconsoleCrossOverlay workarounds above
|
||||||
# 6. Nix auto-dispatches derivations by `system` — no per-package exceptions needed
|
# 6. Nix auto-dispatches derivations by `system` — no per-package exceptions needed
|
||||||
# Example buildMachines config:
|
# Example buildMachines config:
|
||||||
|
# Server dispatches aarch64 builds to uConsole (4 cores, less power):
|
||||||
# nix.buildMachines = [{
|
# nix.buildMachines = [{
|
||||||
# hostName = "uConsole.local";
|
# hostName = "uConsole.local";
|
||||||
# systems = ["aarch64-linux"];
|
# systems = ["aarch64-linux"];
|
||||||
@@ -134,7 +135,15 @@
|
|||||||
# sshUser = "builder";
|
# sshUser = "builder";
|
||||||
# sshKey = "/etc/ssh/builder_key";
|
# 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 ====
|
# ==== How to build natively on uConsole ====
|
||||||
# To native-compile these on the uConsole:
|
# To native-compile these on the uConsole:
|
||||||
|
|||||||
Reference in New Issue
Block a user