From bdc1cd68c4beb63412d8e67a5c973eb25cc399df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Mon, 29 Jul 2024 12:22:12 +0200 Subject: [PATCH] tailscale: enable ssh daemon --- nixos/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index f9d8fcf..90c0542 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -160,7 +160,10 @@ # List services that you want to enable: - services.tailscale.enable = true; + services.tailscale = { + enable = true; + extraUpFlags = [ "--ssh" ]; + }; # Enable the OpenSSH daemon. services.openssh.enable = true;