about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/tahoe/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix
index 2cefdb7..0f955f9 100644
--- a/hosts/tahoe/default.nix
+++ b/hosts/tahoe/default.nix
@@ -11,15 +11,12 @@ in
     "${self}/profiles/nas.nix"
     "${self}/profiles/acme.nix"
     "${self}/profiles/nginx.nix"
-    "${self}/profiles/unifi.nix"
     "${self}/profiles/samba.nix"
     "${self}/profiles/backup.nix"
     "${self}/profiles/git-server.nix"
     "${self}/profiles/music-server.nix"
     "${self}/profiles/hardware/amd.nix"
     "${self}/profiles/monitoring/exporter.nix"
-    "${self}/profiles/monitoring/promtail.nix"
-    "${self}/profiles/monitoring/loki.nix"
   ];
 
   # Use systemd-networkd for networking
@@ -33,6 +30,15 @@ in
     };
   };
 
+  systemd.network.networks.enp33s0f1 = {
+    matchConfig.Name = "enp33s0f1";
+    networkConfig.DHCP = "yes";
+    dhcpV4Config = {
+      UseDNS = "yes";
+      UseDomains = "yes";
+    };
+  };
+
   networking.useNetworkd = true;
   networking.useDHCP = false;
   networking.firewall.enable = false;