nyx/modules/nixos/services/tailscale.nix

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