[tailscale] Update

This commit is contained in:
Tibo De Peuter 2023-11-02 17:04:04 +01:00
parent d3f0c94583
commit 70b163cf0c

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, pkgs-unstable, ... }:
let
cfg = config.sisyphus.services.tailscale;
@ -8,6 +8,7 @@ in {
config = lib.mkIf cfg.enable {
services.tailscale = {
enable = true;
package = pkgs-unstable.tailscale;
useRoutingFeatures = "client";
};
};