fix(nix): add minimal tailscale configuration

This commit is contained in:
Lucas Sta Maria 2025-08-13 10:22:13 +00:00
parent e573bb1a13
commit 66239b9b29
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -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 ]; };
}