nyx/modules/nixos/services/tailscale.nix

10 lines
164 B
Nix
Raw 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; [
trayscale
];
}