summaryrefslogtreecommitdiff
path: root/system/virt
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-01 23:30:40 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-01 23:30:40 -0500
commitac69e33824c247037be412d57c338f166f892d48 (patch)
tree1d85ad1c7e94e7b44c4f90d543559bd86b8b6988 /system/virt
parentupdate commits (diff)
downloaddotfiles-nix-ac69e33824c247037be412d57c338f166f892d48.tar.gz
dotfiles-nix-ac69e33824c247037be412d57c338f166f892d48.tar.bz2
dotfiles-nix-ac69e33824c247037be412d57c338f166f892d48.zip
fix windows vm networking
Diffstat (limited to 'system/virt')
-rw-r--r--system/virt/qemu.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/virt/qemu.nix b/system/virt/qemu.nix
index 6c068e4..64ad8c6 100644
--- a/system/virt/qemu.nix
+++ b/system/virt/qemu.nix
@@ -17,5 +17,9 @@ in {
environment.systemPackages = with pkgs; [
qemu
];
+
+ networking.firewall.trustedInterfaces = [
+ "virbr0"
+ ];
};
}