Commit b6a38bf74061

Vincent Demeester <vincent@sbr.pm>
2019-06-14 14:44:32
machine/honshu: use bridge networking (libvirt)
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent aba00cb
Changed files (1)
machine
machine/honshu.nix
@@ -13,8 +13,11 @@ options edns0
   };
   networking = {
     enableIPv6 = false;
-    firewall.allowedTCPPorts = [ 3389 2375 7946 9000 80 6443 ];
-    firewall.allowPing = true;
+    firewall.enable = false; # we are in safe territory :D
+    bridges.br1.interfaces = [ "eno1" ];
+    interfaces.eno1 = {
+      useDHCP = true;
+    };
   };
   profiles = {
     avahi.enable = true;