17 lines
269 B
Nix
17 lines
269 B
Nix
{ ... }:
|
|
{
|
|
config.dendritic.features.security-firewall = {
|
|
nixosModules = [
|
|
(
|
|
{ ... }:
|
|
{
|
|
networking.nftables.enable = true;
|
|
|
|
networking.firewall = {
|
|
enable = true;
|
|
};
|
|
}
|
|
)
|
|
];
|
|
};
|
|
}
|