feat: schizo networking

This commit is contained in:
Bloxx12 2025-05-08 19:51:32 +02:00
commit c5898e58d0
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
5 changed files with 116 additions and 42 deletions

View file

@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}: let
in {
networking = {
# use nftables over iptables
nftables.enable = true;
firewall = {
enable = true;
allowPing = false;
logReversePathDrops = true;
};
};
}