goaccess: allow null port
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M modules/nixos/goaccess.nix → modules/nixos/goaccess.nix
@@ -161,8 +161,8 @@ example = "/run/goaccess.sock"; }; port = lib.mkOption { - type = types.port; - default = 7890; + type = with types; nullOr types.port; + default = null; description = "Port for the WebSocket server (real-time mode only)"; };