nix/nixos/common/services/tailscale.nix
2023-09-15 23:50:03 +09:00

13 lines
No EOL
347 B
Nix

{ config, pkgs, ... }: {
# Enable tailscale and open port 22 on it
services.tailscale = {
enable = true;
interfaceName = "tailscale0";
extraUpFlags = [
"--login-server=https://headscale.sysctl.io"
"--accept-dns"
"--accept-routes"
];
};
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 22 ];
}