Files
dotfiles/darwin/shiro/services/tailscale.nix
2025-06-04 15:40:52 +05:30

10 lines
172 B
Nix

{...}: {
services = {
tailscale = {
enable = true;
useRoutingFeatures = "both";
extraUpFlags = ["--advertise-routes=192.168.0.0/24"];
};
};
}