about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-28 21:16:31 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-29 13:47:04 +0200
commit9a132baaedd53be592aada655379ab2e7bd295dc (patch)
tree7e2b3cdb4739105a23bccbdf21c25dd14e43c4fb
parentMisc: Comments cleanup (diff)
downloadnixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.tar.gz
nixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.tar.bz2
nixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.zip
Firewall: Allow tcp:9090 (calibre)
-rw-r--r--hosts/configuration.nix2
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.
     };