From 663125aa0eeed730ab2ea2678ecb50c7828b469c Mon Sep 17 00:00:00 2001 From: James Magahern Date: Wed, 11 Jun 2025 20:17:20 -0700 Subject: [PATCH] flake: fix error in flake config for INVIDIOUS_BASE_URL --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d689d83..a5395c5 100644 --- a/flake.nix +++ b/flake.nix @@ -86,7 +86,7 @@ PORT = toString cfg.port; ENABLE_VIDEO = if cfg.enable_video then "1" else "0"; USE_INVIDIOUS = if cfg.invidious.enable then "1" else "0"; - INVIDIOUS_URL = cfg.invidious.url; + INVIDIOUS_BASE_URL = cfg.invidious.url; STORE_PATH = cfg.store_path; }; };