aboutsummaryrefslogtreecommitdiff
path: root/hosts/tahoe/networking.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/tahoe/networking.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/hosts/tahoe/networking.nix b/hosts/tahoe/networking.nix
new file mode 100644
index 0000000..1b0568e
--- /dev/null
+++ b/hosts/tahoe/networking.nix
@@ -0,0 +1,22 @@
+{ ... }: {
+ # Use systemd-networkd for networking
+ systemd.network = {
+ enable = true;
+ networks = {
+ enp42s0 = {
+ matchConfig.Name = "enp42s0";
+ networkConfig = { DHCP = "yes"; };
+ extraConfig = ''
+ [DHCPv4]
+ UseDNS=yes
+ UseDomains=yes
+ '';
+ };
+ };
+ };
+
+ networking.private-wireguard.enable = true;
+ networking.firewall.enable = false;
+
+ my.services.tailscale.enable = true;
+}