Things
This commit is contained in:
parent
30ca703476
commit
4faa251a6e
4 changed files with 9 additions and 9 deletions
|
@ -201,7 +201,8 @@
|
|||
lsof
|
||||
zsh-completions
|
||||
nix-zsh-completions
|
||||
carapace # used by nushell
|
||||
comma
|
||||
# carapace # used by nushell
|
||||
nil # TODO probably not best place
|
||||
nixd # TODO probably not best place
|
||||
terraform-lsp # TODO probably not best place
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
boot.binfmt.emulatedSystems = ["i686-linux" "riscv64-linux"];
|
||||
boot.binfmt.emulatedSystems = ["i686-linux" "aarch64-linux" "riscv64-linux"];
|
||||
nix.extraOptions = ''
|
||||
extra-platforms = aarch64-linux arm-linux i686-linux riscv64-linux
|
||||
'';
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
services.hercules-ci-agent = {
|
||||
enable = true;
|
||||
settings = {
|
||||
concurrentTasks = 32;
|
||||
concurrentTasks = "auto";
|
||||
clusterJoinTokenPath = config.age.secrets.hercules-ci-join-token.path;
|
||||
binaryCachesPath = config.age.secrets.hercules-ci-binary-caches.path;
|
||||
secretsJsonPath = config.age.secrets.hercules-ci-secrets-json.path;
|
||||
|
|
|
@ -66,8 +66,8 @@
|
|||
};
|
||||
|
||||
distributedBuilds = true;
|
||||
buildMachines = [
|
||||
{
|
||||
buildMachines =
|
||||
(lib.lists.optional (config.networking.hostName == "picard") {
|
||||
hostName = "sisko.fleet";
|
||||
system = "aarch64-linux";
|
||||
maxJobs = 4;
|
||||
|
@ -75,8 +75,8 @@
|
|||
protocol = "ssh-ng";
|
||||
sshUser = "root";
|
||||
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
|
||||
}
|
||||
{
|
||||
})
|
||||
++ (lib.lists.optional (config.networking.hostName == "picard") {
|
||||
hostName = "mac.staging.mlabs.city";
|
||||
system = "x86_64-darwin";
|
||||
maxJobs = 4;
|
||||
|
@ -84,7 +84,6 @@
|
|||
protocol = "ssh-ng";
|
||||
sshUser = "root";
|
||||
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
|
||||
}
|
||||
];
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue