diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-08-12 10:12:39 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-08-12 10:12:39 -0700 |
| commit | 6adb943f580162ea6348e3910926fc2fcefcfa79 (patch) | |
| tree | d802fd738ffed6eaa508acfd5d0c98b38331fab5 /profiles/network/firewall.nix | |
| parent | add a profile for boot (diff) | |
| download | infra-6adb943f580162ea6348e3910926fc2fcefcfa79.tar.gz | |
add profiles for security, firewalls, and users
Diffstat (limited to 'profiles/network/firewall.nix')
| -rw-r--r-- | profiles/network/firewall.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/profiles/network/firewall.nix b/profiles/network/firewall.nix new file mode 100644 index 0000000..1b30c84 --- /dev/null +++ b/profiles/network/firewall.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + networking = { + firewall = { + enable = false; + allowPing = true; + logRefusedConnections = false; + }; + }; +} |
