summaryrefslogtreecommitdiff
path: root/hosts/minime/networking/uvm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/minime/networking/uvm.nix')
-rw-r--r--hosts/minime/networking/uvm.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/hosts/minime/networking/uvm.nix b/hosts/minime/networking/uvm.nix
new file mode 100644
index 0000000..15e498e
--- /dev/null
+++ b/hosts/minime/networking/uvm.nix
@@ -0,0 +1,19 @@
+{ ... }: {
+ systemd.network = {
+ netdevs."10-uvm-br" = {
+ netdevConfig = {
+ Kind = bridge;
+ Name = "uvm-br";
+ };
+ };
+
+ networks."10-uvm-br" = {
+ matchConfig.Name = "uvm-br";
+ networkConfig = {
+ DHCPServer = false;
+ IPv6SendRA = true;
+ };
+ Address = [ ];
+ };
+ };
+}