2023-08-23 07:30:15 +02:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
# Enable tailscale and open port 22 on it
|
2023-08-28 04:47:56 +02:00
|
|
|
services.tailscale.enable = true;
|
2023-08-23 10:14:13 +02:00
|
|
|
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 22 ];
|
2023-08-23 07:30:15 +02:00
|
|
|
}
|