diff --git a/system/starlight/default.nix b/system/starlight/default.nix index ec87f1d..7519d5f 100644 --- a/system/starlight/default.nix +++ b/system/starlight/default.nix @@ -42,6 +42,15 @@ }; networking.dhcpcd.allowInterfaces = [ "br0" ]; + networking.vlans."br0.5" = { + id = 5; + interface = "br0"; + }; + networking.bridges.brvm = { + rstp = false; + interfaces = [ "br0.5" ]; + }; + services.openssh.extraConfig = '' HostCertificate ${./starlight-cert.pub} '';