From 9cdf89fe1582e632d0374e44de5199a93b0cbc79 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 18 Jan 2021 00:05:18 +0100 Subject: [PATCH] firewall: Trust wg-home Fixes regression introduced in 126a0dad4b81f1204de31411d70e50b0b6190614. --- modules/wireguard/home.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/wireguard/home.nix b/modules/wireguard/home.nix index 3ff2a8e..ee9a0be 100644 --- a/modules/wireguard/home.nix +++ b/modules/wireguard/home.nix @@ -29,5 +29,7 @@ in } ]; }; + + networking.firewall.trustedInterfaces = [ "wg-home" ]; }; }