fix(nix): generate default baseURL from listen address and port
Alan Pearce alan@alanpearce.eu
Wed, 22 May 2024 13:21:15 +0200
1 files changed, 9 insertions(+), 5 deletions(-)
jump to
M nix/modules/default.nix → nix/modules/default.nix
@@ -106,11 +106,15 @@ description = "Listen on a specific IP address."; default = "localhost"; }; - baseURL = mkOption { - type = types.str; - description = "The base URL that searchix will be served on."; - default = "http://localhost:3000"; - }; + baseURL = + let + inherit (config.services.searchix.settings) web; + in + mkOption { + type = types.str; + description = "The base URL that searchix will be served on."; + default = "http://${web.listenAddress}:${web.port}"; + }; environment = mkOption { type = types.str;