From 21e61beb49abde7306b9f6fbbc658ce986e1b8a0 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 1 Sep 2025 23:13:00 +0200 Subject: [PATCH] tailscale: Avoid build failure by switching to unstable See: https://github.com/nixos/nixpkgs/issues/438765 --- modules/system/services/tailscale.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/system/services/tailscale.nix b/modules/system/services/tailscale.nix index 9d726af..baf1a09 100644 --- a/modules/system/services/tailscale.nix +++ b/modules/system/services/tailscale.nix @@ -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";