nixos-config/nixos/services/tailscale.service.nix
Zhongheng Liu f4df5fd49c
feat: kanshi fish and tailscale
move kanshi config to individual file
add tailscale fish completions
remove auto-cpufreq
change tailscale service to fix exit-node and routing features
2024-09-01 09:23:43 +03:00

10 lines
117 B
Nix

{
pkgs,
config,
...
}: {
services.tailscale = {
enable = true;
useRoutingFeatures = "client";
};
}