chore: split firewall config into separate files

This commit is contained in:
Khaïs COLIN 2024-08-22 16:38:49 +00:00
parent ee54f41d16
commit 884d58742d
2 changed files with 8 additions and 9 deletions

7
firewall.nix Normal file
View file

@ -0,0 +1,7 @@
{
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 80 443 ];
allowedUDPPorts = [ 22 80 443 ];
};
}