From 2cfcf9ee7470376ffb8b3e89fe1ac9468f8d85e4 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 12 Sep 2025 23:49:26 +0200 Subject: [PATCH] tailscale: Return to the stable package after kernel fix See https://github.com/NixOS/nixpkgs/issues/438765#issuecomment-3281041188 --- modules/system/services/tailscale.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/modules/system/services/tailscale.nix b/modules/system/services/tailscale.nix index 207dc29..72c1cf8 100644 --- a/modules/system/services/tailscale.nix +++ b/modules/system/services/tailscale.nix @@ -1,9 +1,4 @@ -{ - config, - pkgs-unstable, - lib, - ... -}: +{ config, lib, ... }: let cfg = config.custom.services.tailscale; in @@ -27,12 +22,9 @@ in services.tailscale = { enable = true; - package = pkgs-unstable.tailscale; - authKeyFile = config.sops.secrets."tailscale/auth-key".path; openFirewall = true; useRoutingFeatures = if cfg.exitNode.enable then "server" else "client"; - extraUpFlags = [ "--reset=true" ]; extraSetFlags = [ "--ssh=${lib.boolToString cfg.ssh.enable}"