remote-builder: +maxJobs

This commit is contained in:
Motiejus Jakštys 2024-07-31 01:06:24 +03:00
parent d32a0e023d
commit 39a2f0bdc1
2 changed files with 5 additions and 0 deletions

View File

@ -112,6 +112,7 @@ in
inherit (host) system supportedFeatures; inherit (host) system supportedFeatures;
hostName = host.jakstIP; hostName = host.jakstIP;
sshKey = "/etc/ssh/ssh_host_ed25519_key"; sshKey = "/etc/ssh/ssh_host_ed25519_key";
maxJobs = 2;
}; };
node_exporter = { node_exporter = {

View File

@ -18,6 +18,10 @@
hostName = lib.mkOption { type = str; }; hostName = lib.mkOption { type = str; };
sshKey = lib.mkOption { type = path; }; sshKey = lib.mkOption { type = path; };
supportedFeatures = lib.mkOption { type = listOf str; }; supportedFeatures = lib.mkOption { type = listOf str; };
maxJobs = lib.mkOption {
type = int;
default = 1;
};
}; };
}; };