From 9926338cf9b0c3476a62cd9ee8d254451e986fb0 Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Mon, 7 Aug 2023 09:16:43 +0100 Subject: [PATCH] Add --ssh flag to tailscale --- system/nixos/astoria/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system/nixos/astoria/configuration.nix b/system/nixos/astoria/configuration.nix index 6958ee86..5b111b51 100644 --- a/system/nixos/astoria/configuration.nix +++ b/system/nixos/astoria/configuration.nix @@ -153,7 +153,12 @@ services.gnome.gnome-keyring.enable = true; - services.tailscale.enable = true; + services.tailscale = { + enable = true; + extraUpFlags = [ + "--ssh" + ]; + }; # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true;