tailscale: Avoid build failure by switching to unstable

See: https://github.com/nixos/nixpkgs/issues/438765
This commit is contained in:
SebastianStork 2025-09-01 23:13:00 +02:00
parent dc711f3218
commit 21e61beb49

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, pkgs-unstable, lib, ... }:
let
cfg = config.custom.services.tailscale;
in
@ -22,6 +22,7 @@ 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";