From 67b038c2bc37b238dbc334922e7d1fe546b15c47 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 1 Jan 2022 20:56:41 +0000 Subject: [PATCH] ops/nixos/common: turn off logRefusedConnections - it's super noisy --- ops/nixos/lib/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/ops/nixos/lib/common.nix b/ops/nixos/lib/common.nix index 597078b502..03c551f1f7 100644 --- a/ops/nixos/lib/common.nix +++ b/ops/nixos/lib/common.nix @@ -125,6 +125,7 @@ in networking.firewall = { allowPing = true; + logRefusedConnections = false; }; environment.homeBinInPath = true;