mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 10:18:37 +02:00
12 lines
236 B
Nix
12 lines
236 B
Nix
{
|
|
# enable tailscale on aquamarine
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "server";
|
|
extraSetFlags = [
|
|
# access home network via tailscale
|
|
"--advertise-routes=192.168.5.0/24"
|
|
];
|
|
};
|
|
}
|