diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-28 21:16:31 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-29 13:47:04 +0200 |
commit | 362572a96e0f763271c6f6c10bf798ec88b7ec92 (patch) | |
tree | b42e1950156b77c2fd23d22d0f354561210e5833 /hosts/configuration.nix | |
parent | Misc: Comments cleanup (diff) | |
download | nixos-config-362572a96e0f763271c6f6c10bf798ec88b7ec92.tar.gz nixos-config-362572a96e0f763271c6f6c10bf798ec88b7ec92.tar.bz2 nixos-config-362572a96e0f763271c6f6c10bf798ec88b7ec92.zip |
Firewall: Allow tcp:9090 (calibre)
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r-- | hosts/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index eebbf81..4a34c39 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -42,7 +42,7 @@ nameservers = [ "9.9.9.9" ]; firewall = { enable = true; - allowedTCPPorts = [ 80 22 ]; + allowedTCPPorts = [ 80 22 9090 ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. }; |