7 lines
186 B
Nix
7 lines
186 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [ ./default.nix ];
|
|
services.openssh.openFirewall = false;
|
|
networking.firewall.interfaces.tailscale0.allowedTCPPorts = config.services.openssh.ports;
|
|
}
|