nix-config/aspects/common/firewall.nix
2026-02-12 18:50:38 -03:00

11 lines
173 B
Nix

{ ... }:
{
flake.modules.nixos.common-firewall =
{ ... }:
{
networking = {
firewall.enable = true;
nftables.enable = true;
};
};
}