Allow ports

This commit is contained in:
Nathan McCarty 2022-01-31 23:09:45 -05:00
parent dce30b4aa6
commit 9069d0e8a5
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 7 additions and 0 deletions

View File

@ -46,4 +46,11 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
unstable.firefox-beta-bin unstable.firefox-beta-bin
]; ];
# Enable firewall and pass some ports
networking.firewall = {
enable = true;
allowedTCPPorts = [ 61377 ];
allowedUDPPorts = [ 61377 ];
};
} }