nyx/modules/nixos/services/tailscale.nix

9 lines
150 B
Nix
Raw Permalink Normal View History

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