about summary refs log tree commit diff
path: root/hosts/configuration.nix
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
commit362572a96e0f763271c6f6c10bf798ec88b7ec92 (patch)
treeb42e1950156b77c2fd23d22d0f354561210e5833 /hosts/configuration.nix
parentMisc: Comments cleanup (diff)
downloadnixos-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.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.
     };