Fediversity/machines/operator/test01/default.nix
Kiara Grouwstra dbb4ce67fc move machines to reflect a semantic structure (#367)
later we may want to distinguish dev vs host as well, tho eventually we expect not to have hard-coded machines anyway.

split off from #319.

Reviewed-on: Fediversity/Fediversity#367
Co-authored-by: Kiara Grouwstra <kiara@procolix.eu>
Co-committed-by: Kiara Grouwstra <kiara@procolix.eu>
2025-06-15 15:01:56 +02:00

19 lines
425 B
Nix

{
fediversityVm = {
vmId = 7001;
proxmox = "fediversity";
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
domain = "abundos.eu";
ipv4 = {
address = "95.215.187.51";
gateway = "95.215.187.1";
};
ipv6 = {
address = "2a00:51c0:13:1305::51";
gateway = "2a00:51c0:13:1305::1";
};
};
}