From c95ddaad4d6a6bd23ad796cad678a1e600136778 Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 23 Aug 2023 17:14:13 +0900 Subject: [PATCH] test --- nixos/common/services/tailscale.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/common/services/tailscale.nix b/nixos/common/services/tailscale.nix index f2d266e4..85d76a1b 100644 --- a/nixos/common/services/tailscale.nix +++ b/nixos/common/services/tailscale.nix @@ -1,5 +1,5 @@ { config, pkgs, ... }: { # Enable tailscale and open port 22 on it services = { tailscale.enable = true; }; - firewall.interfaces.tailscale0.allowedTCPPorts = [ 22 ]; + networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 22 ]; } \ No newline at end of file