remove invidious

This commit is contained in:
TheWanderingCrow 2025-02-02 22:57:31 -05:00
parent 80b47641c5
commit 278d3b9aba
2 changed files with 0 additions and 26 deletions

View file

@ -3,7 +3,6 @@
./bar-assistant.nix
./homebox.nix
./homepage.nix
./invidious.nix
./bookstack.nix
./grocy.nix
];

View file

@ -1,25 +0,0 @@
{
lib,
config,
...
}:
lib.mkIf config.user.overseer.enable {
services.nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"vid.wanderingcrow.net" = {
enableACME = false;
forceSSL = false;
};
};
};
services.invidious = {
enable = true;
port = 3000;
nginx.enable = true;
domain = "vid.wanderingcrow.net";
database.createLocally = true;
};
}