{ config, ... }: { networking = { hostName = "Stormwind"; networkmanager.enable = false; nameservers = [ "192.168.0.1" "1.1.1.1" ]; firewall = { enable = true; allowedTCPPorts = [ 53 2222 ]; allowedUDPPorts = [ 53 67 68 ]; }; bridges = { incusbr1 = { interfaces = []; }; incusbr2 = { interfaces = [ "enp4s0" ]; }; }; interfaces = { incusbr1 = { ipv4.addresses = [ { address = "10.46.33.1"; prefixLength = 24; } ]; }; incusbr2 = { ipv4.addresses = [ { address = "192.168.0.19"; prefixLength = 24; } ]; macAddress = "2c:fd:a1:c1:13:b0"; }; }; defaultGateway = { address = "192.168.0.1"; interface = "incusbr2"; }; }; }