1
0

hosts/clerie-backup: Move VM to different region

This commit is contained in:
2025-04-28 15:54:28 +02:00
parent dffebb92e8
commit f33b8c0cdf
3 changed files with 27 additions and 3 deletions

View File

@@ -14,6 +14,7 @@
./mercury-vm
./netcup
./network-fallback-dhcp
./ruby-vm
./serial-console
./wg-clerie
];

View File

@@ -0,0 +1,23 @@
{ config, lib, ... }:
with lib;
{
options.profiles.clerie.ruby-vm = {
enable = mkEnableOption "Profile for ruby VMs";
};
config = mkIf config.profiles.clerie.ruby-vm.enable {
profiles.clerie.serial-console.enable = true;
services.qemuGuest.enable = true;
networking.nameservers = [
"2a00:fe0:0:2::300"
"2a00:fe0:0:3::300"
];
};
}