nixos-module/server/network: load iptables, open ssh

This commit is contained in:
Astro 2021-04-04 23:02:12 +02:00
parent dde0533e90
commit fd8cb77b40
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,11 @@ let
in
{
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
systemd.network = {
enable = true;