10 lines
150 B
Nix
10 lines
150 B
Nix
# Firewall configuration for NixOS
|
|
{
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowPing = false;
|
|
};
|
|
|
|
networking.nftables.enable = true;
|
|
}
|