rtl: change default port from 3000 to 3001

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 <noreply@anthropic.com>
This commit is contained in:
padreug 2025-12-23 20:00:21 +01:00
parent 9d2884b6f7
commit ebd13a2c87

View file

@ -11,7 +11,7 @@ let
}; };
port = mkOption { port = mkOption {
type = types.port; type = types.port;
default = 3000; default = 3001;
description = "HTTP server port."; description = "HTTP server port.";
}; };
dataDir = mkOption { dataDir = mkOption {