diff options
| author | Grigory Shipunov | 2025-01-12 21:42:36 +0000 |
|---|---|---|
| committer | Grigory Shipunov | 2025-01-12 22:01:04 +0000 |
| commit | 3771c9295b8a0958443927f622b047254b74a1bb (patch) | |
| tree | d580a89532e90ae1be8c5bdca6e149bcca503b66 /hosts/minime | |
| parent | bd44fc6fcb1fe3df7b8a8c81839e34470fed7911 (diff) | |
some cloud-hypervisor network fuckery, back to qemu
Diffstat (limited to 'hosts/minime')
| -rw-r--r-- | hosts/minime/networking/uvm.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/hosts/minime/networking/uvm.nix b/hosts/minime/networking/uvm.nix index dfcb14c..d618876 100644 --- a/hosts/minime/networking/uvm.nix +++ b/hosts/minime/networking/uvm.nix @@ -2,15 +2,15 @@ { # TODO: make a module systemd.network = { - netdevs."10-uvm-br" = { + netdevs."10-microvm" = { netdevConfig = { Kind = "bridge"; - Name = "uvm-br"; + Name = "microvm"; }; }; - networks."10-uvm-br" = { - matchConfig.Name = "uvm-br"; + networks."10-microvm" = { + matchConfig.Name = "microvm"; networkConfig = { DHCPServer = false; IPv6SendRA = true; @@ -30,9 +30,9 @@ ]; }; - networks."11-uvm-br" = { + networks."11-microvm" = { matchConfig.Name = "uvm-*"; - networkConfig.Bridge = "uvm-br"; + networkConfig.Bridge = "microvm"; }; }; @@ -40,6 +40,6 @@ enable = true; enableIPv6 = true; externalInterface = "enp90s0"; - internalInterfaces = [ "uvm-br" ]; + internalInterfaces = [ "microvm" ]; }; } |
