1
0

Update from updated-inputs-2025-04-29-01-03

This commit is contained in:
Flake Update Bot
2025-04-29 03:03:07 +02:00
3 changed files with 27 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
./restic-server.nix
];
profiles.clerie.cybercluster-vm.enable = true;
profiles.clerie.ruby-vm.enable = true;
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
@@ -16,10 +16,10 @@
systemd.network.networks."10-wan" = {
matchConfig.Name = "ens18";
address = [
"2001:638:904:ffc1::6/64"
"2a00:fe0:1:21f::a/64"
];
routes = [
{ Gateway ="2001:638:904:ffc1::1"; }
{ Gateway ="2a00:fe0:1:21f::1"; }
];
linkConfig.RequiredForOnline = "routable";
ipv6AcceptRAConfig.DHCPv6Client = "no";

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"
];
};
}