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,
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}"