From ebd13a2c877c9accce178ad90b3e9134c307e948 Mon Sep 17 00:00:00 2001 From: padreug Date: Tue, 23 Dec 2025 20:00:21 +0100 Subject: [PATCH] rtl: change default port from 3000 to 3001 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoid conflict with lamassu-server which also defaults to port 3000. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- modules/rtl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rtl.nix b/modules/rtl.nix index 60a3bca..9d7df66 100644 --- a/modules/rtl.nix +++ b/modules/rtl.nix @@ -11,7 +11,7 @@ let }; port = mkOption { type = types.port; - default = 3000; + default = 3001; description = "HTTP server port."; }; dataDir = mkOption {