From 46cc0bc90c1ec30815acd2b114f13836835b7be6 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Wed, 14 May 2025 12:33:41 +0530 Subject: [PATCH] feat: enable subnet routes for ryu Signed-off-by: uttarayan21 --- nixos/ryu/services/tailscale.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/ryu/services/tailscale.nix b/nixos/ryu/services/tailscale.nix index f05eb2ca..0fee56fc 100644 --- a/nixos/ryu/services/tailscale.nix +++ b/nixos/ryu/services/tailscale.nix @@ -2,6 +2,8 @@ services = { tailscale = { enable = true; + useRoutingFeatures = true; + extraUpFlags = ["--advertise-routes=192.168.0.0/24"]; }; }; }