tailscale: Return to the stable package after kernel fix

See https://github.com/NixOS/nixpkgs/issues/438765#issuecomment-3281041188
This commit is contained in:
SebastianStork 2025-09-12 23:49:26 +02:00
parent 99e7b25a8a
commit 2cfcf9ee74

View file

@ -1,9 +1,4 @@
{ { config, lib, ... }:
config,
pkgs-unstable,
lib,
...
}:
let let
cfg = config.custom.services.tailscale; cfg = config.custom.services.tailscale;
in in
@ -27,12 +22,9 @@ in
services.tailscale = { services.tailscale = {
enable = true; enable = true;
package = pkgs-unstable.tailscale;
authKeyFile = config.sops.secrets."tailscale/auth-key".path; authKeyFile = config.sops.secrets."tailscale/auth-key".path;
openFirewall = true; openFirewall = true;
useRoutingFeatures = if cfg.exitNode.enable then "server" else "client"; useRoutingFeatures = if cfg.exitNode.enable then "server" else "client";
extraUpFlags = [ "--reset=true" ]; extraUpFlags = [ "--reset=true" ];
extraSetFlags = [ extraSetFlags = [
"--ssh=${lib.boolToString cfg.ssh.enable}" "--ssh=${lib.boolToString cfg.ssh.enable}"