all repos — nix-packages @ 11510946f71cc8f01a3a617731e26da407d79a05

My personal collection of packages for nix

goaccess: allow null port

Alin
commit

11510946f71cc8f01a3a617731e26da407d79a05

parent

a17913872836dfe9be76dc4c253c3d3d1e10925b

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M modules/nixos/goaccess.nixmodules/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)"; };