forked from Fediversity/Fediversity
45 lines
1,006 B
HCL
45 lines
1,006 B
HCL
garage = {
|
|
target = "target"
|
|
nix_module = <<-EOF
|
|
{
|
|
fediversityVm = {
|
|
# vmId = 7014;
|
|
proxmox = "fediversity";
|
|
# hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
|
# unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
|
domain = "test.example";
|
|
ipv4 = {
|
|
address = "";
|
|
gateway = "";
|
|
};
|
|
ipv6 = {
|
|
address = "";
|
|
gateway = "";
|
|
};
|
|
};
|
|
}
|
|
EOF
|
|
}
|
|
mastodon = {
|
|
enable = true
|
|
target = "target"
|
|
nix_module = <<-EOF
|
|
{
|
|
fediversityVm = {
|
|
# vmId = 7014;
|
|
proxmox = "fediversity";
|
|
# hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
|
# unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
|
domain = "test.example";
|
|
ipv4 = {
|
|
address = "";
|
|
gateway = "";
|
|
};
|
|
ipv6 = {
|
|
address = "";
|
|
gateway = "";
|
|
};
|
|
};
|
|
}
|
|
EOF
|
|
}
|