nyx/modules/nixos/services/tailscale.nix

9 lines
150 B
Nix
Raw Permalink Normal View History

2024-12-20 13:11:42 +00:00
{pkgs, ...}: {
2024-12-05 14:21:51 +00:00
services.tailscale = {
enable = true;
useRoutingFeatures = "client";
2024-12-05 14:21:51 +00:00
};
environment.systemPackages = with pkgs; [
];
}