about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/nitter.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/tests/nitter.nix b/nixos/tests/nitter.nix
index e17f1c473436f..0e1a6d150f38e 100644
--- a/nixos/tests/nitter.nix
+++ b/nixos/tests/nitter.nix
@@ -6,11 +6,13 @@ import ./make-test-python.nix ({ pkgs, ... }:
 
   nodes.machine = {
     services.nitter.enable = true;
+    # Test CAP_NET_BIND_SERVICE
+    services.nitter.server.port = 80;
   };
 
   testScript = ''
     machine.wait_for_unit("nitter.service")
-    machine.wait_for_open_port("8080")
-    machine.succeed("curl --fail http://localhost:8080/")
+    machine.wait_for_open_port("80")
+    machine.succeed("curl --fail http://localhost:80/")
   '';
 })