dotfiles/hosts/common/global/tailscale.nix

7 lines
115 B
Nix
Raw Normal View History

2023-09-24 00:14:49 +00:00
{ lib, ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = lib.mkDefault "client";
};
}