summary refs log tree commit diff stats
path: root/system/services/firewall
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-06-17 20:56:56 +0200
committerSoispha <soispha@vhack.eu>2023-06-18 15:06:04 +0000
commit127488e491604b9294b88ff18bb23eaf2e4ffe15 (patch)
treecaebbaf8924aff267bbf740833422a526c685c11 /system/services/firewall
parentBuild(flake): Update (diff)
downloadnixos-server-127488e491604b9294b88ff18bb23eaf2e4ffe15.tar.gz
nixos-server-127488e491604b9294b88ff18bb23eaf2e4ffe15.zip
Refactor(services): Remove dead code
Diffstat (limited to '')
-rw-r--r--system/services/firewall/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/system/services/firewall/default.nix b/system/services/firewall/default.nix
deleted file mode 100644
index 23dbcc4..0000000
--- a/system/services/firewall/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-# vim: ts=2
-{...}: {
-  networking.firewall = {
-    allowedTCPPorts = [
-      # for mail protocols:
-      465 # SMTP SSL
-      995 # POP3 SSL
-      993 # IMAP SSL
-    ];
-  };
-}