From a191e88a1afda4a731181943e1aab1c33a40fb62 Mon Sep 17 00:00:00 2001 From: DCsunset Date: Tue, 30 Jul 2024 17:40:17 -0400 Subject: [PATCH] nixos/gotify-server: update test --- nixos/tests/gotify-server.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/tests/gotify-server.nix b/nixos/tests/gotify-server.nix index c8d7fa172a7b..495b1c8e3443 100644 --- a/nixos/tests/gotify-server.nix +++ b/nixos/tests/gotify-server.nix @@ -9,7 +9,9 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : { services.gotify = { enable = true; - port = 3000; + environment = { + GOTIFY_SERVER_PORT = 3000; + }; }; };