From 37a10b7fe2566ac80c624a43f7414a0ccec29ef5 Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Mon, 2 Sep 2024 20:48:47 +0530 Subject: [PATCH] chore: remove unused iproute2 from netbird Yet another failed experiment to check why netbird fails to connect after suspending the system. Turns out none of this was needed after all. All that was needed was to stop systemd from managing foreign routing policy rules: systemd.network.config.networkConfig.ManageForeignRoutingPolicyRules = false; Signed-off-by: Chinmay D. Pai --- modules/nixos/networking/netbird/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/nixos/networking/netbird/default.nix b/modules/nixos/networking/netbird/default.nix index 0b83740..0a00247 100644 --- a/modules/nixos/networking/netbird/default.nix +++ b/modules/nixos/networking/netbird/default.nix @@ -17,9 +17,6 @@ # ref: https://github.com/NixOS/nixpkgs/issues/113589 wireguard.enable = true; - - # netbird requires iproute2 route tables. - # iproute2.enable = true; }; services.netbird.enable = true;