summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsils <sils@sils.li>2024-02-21 19:06:16 +0100
committersils <sils@sils.li>2024-02-21 19:06:16 +0100
commit3ef119b00da27a8f188c8cf257abe0c197c3fc42 (patch)
tree04190f4c71e5a060d5bc5d4178d3b038ec49e3d5
parentfix(system/services/invidious-router): change allowed_status_codes type to int (diff)
downloadnixos-server-3ef119b00da27a8f188c8cf257abe0c197c3fc42.tar.gz
nixos-server-3ef119b00da27a8f188c8cf257abe0c197c3fc42.zip
style(system/services/invidious-router): one list entry per line
-rw-r--r--system/services/invidious-router/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/system/services/invidious-router/default.nix b/system/services/invidious-router/default.nix
index 383feea..86de97a 100644
--- a/system/services/invidious-router/default.nix
+++ b/system/services/invidious-router/default.nix
@@ -6,7 +6,9 @@
         listen = "127.0.0.1:8050";
         enable_youtube_fallback = false;
         reload_instance_list_interval = "60s";
-        instances = ["https://invidious.vhack.eu"];
+        instances = [
+          "https://invidious.vhack.eu"
+        ];
       };
       api = {
         enabled = true;