configuration
flake
hosts
_iso
aluminium
astatine
backup-4
beryllium
carbon
clerie-backup
dn42-il-gw1
dn42-il-gw5
dn42-il-gw6
dn42-ildix-clerie
dn42-ildix-service
gatekeeper
hydra-1
cache.nix.clerie.de
build-machines.nix
configuration.nix
hardware-configuration.nix
hydra.nix
nix-cache-key.pub
nix-cache.nix
secrets.json
ssh.pub
hydra-2
krypton
mail-2
monitoring-3
nonat
osmium
palladium
porter
storage-2
tungsten
web-2
zinc
lib
modules
pkgs
profiles
users
.gitignore
README.md
flake.lock
flake.nix
37 lines
948 B
Nix
37 lines
948 B
Nix
{ ... }:
|
|
|
|
{
|
|
|
|
nix = {
|
|
distributedBuilds = true;
|
|
buildMachines = [
|
|
# {
|
|
# hostName = "hydra-1.net.clerie.de";
|
|
# sshUser = "root";
|
|
# systems = [
|
|
# "x86_64-linux"
|
|
# "armv6l-linux"
|
|
# "armv7l-linux"
|
|
# "aarch64-linux"
|
|
# ];
|
|
# sshKey = "/var/lib/hydra/id_ed25519";
|
|
# }
|
|
{
|
|
hostName = "hydra-2.net.clerie.de";
|
|
sshUser = "root";
|
|
systems = [
|
|
"x86_64-linux"
|
|
"armv6l-linux"
|
|
"armv7l-linux"
|
|
"aarch64-linux"
|
|
];
|
|
sshKey = "/var/lib/hydra/id_ed25519";
|
|
}
|
|
];
|
|
};
|
|
|
|
programs.ssh.knownHosts."hydra-1.net.clerie.de".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE2xQBCsFBCwL9n4OP/bPngtNO1fy9kPw13Z/NDoba16 root@hydra-1";
|
|
programs.ssh.knownHosts."hydra-2.net.clerie.de".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDZED9QM+qe7sB6R6atvP6WNaI2sC2nh7TTsD6kgRpnr root@hydra-2";
|
|
|
|
}
|