forked from Fediversity/Fediversity
Reviewed-on: Fediversity/Fediversity#485 Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io> Reviewed-by: kiara Grouwstra <kiara@procolix.eu> Co-authored-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com> Co-committed-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com>
22 lines
477 B
Nix
22 lines
477 B
Nix
{
|
|
_class = "nixops4Resource";
|
|
|
|
fediversityVm = {
|
|
name = "test04";
|
|
vmId = 7004;
|
|
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.54";
|
|
gateway = "95.215.187.1";
|
|
};
|
|
ipv6 = {
|
|
address = "2a00:51c0:13:1305::54";
|
|
gateway = "2a00:51c0:13:1305::1";
|
|
};
|
|
};
|
|
}
|