diff --git a/webapp.nix b/webapp.nix index 5c8d820..e6b8c90 100644 --- a/webapp.nix +++ b/webapp.nix @@ -67,7 +67,7 @@ let # hubMarketUrl = "https://market.example.com"; # When unset (empty string), the corresponding chakra renders ghosted # (non-link) — useful for hosts that don't deploy a given module. - VITE_HUB_ACTIVITIES_URL = cfg.hubActivitiesUrl; + VITE_HUB_EVENTS_URL = cfg.hubEventsUrl; VITE_HUB_LIBRA_URL = cfg.hubLibraUrl; VITE_HUB_WALLET_URL = cfg.hubWalletUrl; VITE_HUB_CHAT_URL = cfg.hubChatUrl; @@ -245,11 +245,11 @@ in { # Empty string = tile rendered ghosted (no link). Set per-host based on # whether each standalone is deployed and on the deployment shape # (path-mode → trailing slash recommended; subdomain-mode → no path). - hubActivitiesUrl = lib.mkOption { + hubEventsUrl = lib.mkOption { type = lib.types.str; default = ""; - example = "https://demo.example.com/sortir/"; - description = "URL the chakra hub's Activities tile links to"; + example = "https://demo.example.com/events/"; + description = "URL the chakra hub's Events tile links to"; }; hubLibraUrl = lib.mkOption { type = lib.types.str;