forked from emily/nixfiles
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ config, ... }: {
|
|
nix.buildMachines = [
|
|
{
|
|
hostName = "localhost";
|
|
sshUser = "hydra-queue-runner";
|
|
maxJobs = 40;
|
|
speedFactor = 40;
|
|
systems = [ "x86_64-linux" ];
|
|
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" "gccarch-x86-64-v3" ];
|
|
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
|
|
}
|
|
{
|
|
hostName = "integra.kyouma.net";
|
|
sshUser = "build";
|
|
maxJobs = 4;
|
|
speedFactor = 8;
|
|
systems = [ "aarch64-linux" ];
|
|
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
|
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
|
|
}
|
|
];
|
|
nix.settings = {
|
|
allowed-uris = [
|
|
"github:"
|
|
"git+https://"
|
|
"git+ssh://"
|
|
"https://"
|
|
];
|
|
};
|
|
users.users.hydra-queue-runner.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE/vCXM3IaxJP9v2Y+xcQrQD2IcffgdzqtWhpMjj9Xl5 hydra@seras"
|
|
];
|
|
programs.ssh = {
|
|
knownHosts."integra.kyouma.net".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIBwEQiSfaDrUAwgul4mktusBPcIVxI4pLNDh9DPopVU";
|
|
knownHosts."localhost".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPNVavo3YHVsrYwXRVISu7kDoknn+5inFGySn4azlB8P";
|
|
};
|
|
}
|