This commit is contained in:
js0ny 2025-12-06 01:51:10 +00:00
parent 4dcea3a32e
commit d82799ad46
3 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
networking.nftables = {
enable = true;
};
networking.firewall.backend = "nftables";
environment.systemPackages = with pkgs; [
iptables-nftables-compat
];
}