open ports

This commit is contained in:
zackartz 2024-05-03 18:20:24 -04:00
parent 06cd575c89
commit 24010f662e
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 2 additions and 3 deletions

View file

@ -101,8 +101,8 @@
services.openssh.enable = true;
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [80 443];
networking.firewall.allowedUDPPorts = [80 443];
networking.firewall.allowedTCPPorts = [80 443 6969 2022];
networking.firewall.allowedUDPPorts = [80 443 6969 2022];
# Or disable the firewall altogether.
# networking.firewall.enable = false;

View file

@ -1,7 +1,6 @@
{
pkgs,
config,
lib,
...
}: let
wings = pkgs.stdenv.mkDerivation {