From 493efbbed4d0747b3347bd6f2a8d1ec22f628988 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 17 Sep 2022 19:25:57 +0200 Subject: [PATCH] Allow ping on all systems --- modules/common/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/common/default.nix b/modules/common/default.nix index 760f711..a80d3d3 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -16,8 +16,10 @@ networking = { domain = "2li.local"; enableIPv6 = false; - firewall.allowedTCPPorts = [ 22 ]; - # firewall.allowedUDPPorts = [ ... ]; + firewall = { + allowPing = true; + allowedTCPPorts = [ 22 ]; + }; }; hardware = {