From b251397b6daa8fe80aa4c6b7da33fed488baaba8 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Mon, 3 Jul 2023 20:16:37 -0400 Subject: [PATCH] Bridge --- machines/levitation/passthrough.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/levitation/passthrough.nix b/machines/levitation/passthrough.nix index d4aca51..a2ba62d 100644 --- a/machines/levitation/passthrough.nix +++ b/machines/levitation/passthrough.nix @@ -32,4 +32,6 @@ in { }; systemd.tmpfiles.rules = [ "f /dev/shm/looking-glass 0660 nathan qemu-libvirtd -" ]; + # Setup bridge + networking.bridges = { "qemu-br0" = { interfaces = [ "enp6s0" ]; }; }; }