From 66239b9b29ff3c11830956c7b092d8df47ed9c59 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 13 Aug 2025 10:22:13 +0000 Subject: [PATCH] fix(nix): add minimal tailscale configuration --- nix/hosts/chaewon/sys.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/hosts/chaewon/sys.nix b/nix/hosts/chaewon/sys.nix index 4813c53..15794ce 100644 --- a/nix/hosts/chaewon/sys.nix +++ b/nix/hosts/chaewon/sys.nix @@ -74,6 +74,7 @@ }; networking.firewall.allowedTCPPorts = [ 80 443 ]; + networking.firewall.allowedUDPPorts = [ config.services.tailscale.port ]; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; @@ -155,6 +156,8 @@ }; }; + services.tailscale.enable = true; + system.stateVersion = "23.11"; home-manager.users.priime = { pkgs, ... }: { imports = [ ./home.nix ]; }; }