nix-config/modules/features/security/security-firewall-nftables.nix
2026-04-15 18:26:05 -04:00

17 lines
269 B
Nix

{ ... }:
{
config.dendritic.features.security-firewall = {
nixosModules = [
(
{ ... }:
{
networking.nftables.enable = true;
networking.firewall = {
enable = true;
};
}
)
];
};
}