[tailscale] Update

This commit is contained in:
Tibo De Peuter 2023-11-02 17:04:04 +01:00
parent 8a029e0328
commit 187683c2b1

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