This commit is contained in:
4DBug
2026-02-09 08:19:52 -06:00
parent de67d5e9ba
commit 1850e5a40f
13 changed files with 3959 additions and 6 deletions

View File

@@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
services.invidious = {
enable = true;
domain = "tube.bug.tools";
port = 3030;
database.createLocally = true;
settings = {
https_only = true;
external_port = 443;
registration_enabled = true;
login_enabled = true;
popular_enabled = true;
default_user_preferences = {
local = true;
};
};
};
}