From 9a8d6011aacf22cb12b371978eb89ee5f49ae1f0 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 21 Aug 2020 04:07:41 +0000 Subject: [PATCH] nixos/tailscale: add tailscale to environment.systemPackages. Use of Tailscale requires using the `tailscale` CLI to talk to the daemon. If the CLI isn't in systemPackages, the resulting user experience is confusing as the Tailscale daemon does nothing. Signed-off-by: David Anderson --- nixos/modules/services/networking/tailscale.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/tailscale.nix b/nixos/modules/services/networking/tailscale.nix index 4d6aeb75ebd..9a692f12b3d 100644 --- a/nixos/modules/services/networking/tailscale.nix +++ b/nixos/modules/services/networking/tailscale.nix @@ -17,6 +17,7 @@ in { }; config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.tailscale ]; # for the CLI systemd.services.tailscale = { description = "Tailscale client daemon";