59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ inputs, pkgs, ... }:
|
|
let ports = (import ../ports.nix { });
|
|
in {
|
|
services.invidious = {
|
|
enable = true;
|
|
port = ports.invidious;
|
|
settings = {
|
|
full_refresh = true;
|
|
https_only = true;
|
|
popular_enabled = true;
|
|
statistics_enabled = true;
|
|
registration_enabled = true;
|
|
channel_threads = 2;
|
|
feed_threads = 2;
|
|
default_user_preferences = {
|
|
locale = "en-US";
|
|
region = "GB";
|
|
captions = [ "English (auto-generated)" "English" "" ];
|
|
dark_mode = true;
|
|
feed_menu = [ "Subscriptions" "Popular" ];
|
|
default_home = "Subscriptions";
|
|
max_results = 30;
|
|
annotations = true;
|
|
annotations_subscribed = true;
|
|
comments = [ ];
|
|
player_style = "invidious";
|
|
related_videos = true;
|
|
autoplay = true;
|
|
continue = true;
|
|
continue_autoplay = true;
|
|
quality = "hd720";
|
|
local = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.services.invidious.serviceConfig = {
|
|
Restart = "always";
|
|
RuntimeMaxSec = "${toString (60 * 60 * 2)}";
|
|
};
|
|
|
|
services.nginx.virtualHosts."invidious.owo.monster" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations = {
|
|
"/".proxyPass = "http://127.0.0.1:${toString ports.invidious}";
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts."invidious-nojs.owo.monster" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations = {
|
|
"/".proxyPass = "http://127.0.0.1:${toString ports.invidious}";
|
|
"/js/".extraConfig = "deny all;";
|
|
};
|
|
};
|
|
}
|