mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
tailscale: Avoid build failure by switching to unstable
See: https://github.com/nixos/nixpkgs/issues/438765
This commit is contained in:
parent
dc711f3218
commit
21e61beb49
1 changed files with 2 additions and 1 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue