This commit is contained in:
4DBug
2026-08-26 15:44:08 -05:00
parent f8b9645149
commit 6790b2d923
5 changed files with 45 additions and 9 deletions
+16 -4
View File
@@ -1,7 +1,19 @@
{
{ inputs, ... }: {
den.aspects.bugtv = {
nixos = {
nixos = { pkgs, config, ... }: {
imports = [ inputs.bug-tv.nixosModules.default ];
den.tunnels = [ "api.tv" ];
services."bug-tv" = {
enable = true;
package = inputs.bug-tv.packages.${pkgs.system}.default;
port = 8789;
tmdbApiKey = "ac014b130a8e6344c91dff4e68b18d47";
providers = [ "cineby" ];
timeoutMs = 30000;
};
};
};
}
}