nixos: add br0 as a trusted interface

This commit is contained in:
2026-07-25 20:07:38 -04:00
parent 45f966f0e9
commit bf34eb86c8
+4 -1
View File
@@ -118,7 +118,10 @@ in
networkmanager.plugins = with pkgs; [ networkmanager-openvpn ]; networkmanager.plugins = with pkgs; [ networkmanager-openvpn ];
firewall = { firewall = {
trustedInterfaces = [ "virbr0" ]; trustedInterfaces = [
"virbr0"
"br0"
];
allowedTCPPorts = [ 22 ]; allowedTCPPorts = [ 22 ];
}; };
}; };