diff --git a/webapp.nix b/webapp.nix index 95888fa..25ee772 100644 --- a/webapp.nix +++ b/webapp.nix @@ -74,6 +74,7 @@ let VITE_HUB_FORUM_URL = cfg.hubForumUrl; VITE_HUB_MARKET_URL = cfg.hubMarketUrl; VITE_HUB_TASKS_URL = cfg.hubTasksUrl; + VITE_HUB_RESTAURANT_URL = cfg.hubRestaurantUrl; # Additional env vars NODE_ENV = "production"; @@ -272,6 +273,12 @@ in { example = "https://demo.example.com/tasks/"; description = "URL the chakra hub's Tasks tile links to"; }; + hubRestaurantUrl = lib.mkOption { + type = lib.types.str; + default = ""; + example = "https://demo.example.com/restaurant/"; + description = "URL the chakra hub's Restaurant tile links to"; + }; enableSSL = lib.mkOption { type = lib.types.bool;