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
Generated
+21
View File
@@ -125,6 +125,26 @@
"type": "gitlab" "type": "gitlab"
} }
}, },
"bug-tv": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1787772860,
"narHash": "sha256-XTY+vJQGP8Z8/U2jjrbWMMCfn78kYlmTcoCYUMd3AHY=",
"ref": "refs/heads/main",
"rev": "ffab4949f334f5a7bc699bfba8592097e8fa5787",
"revCount": 2,
"type": "git",
"url": "https://git.bug.tools/bug/tv.git"
},
"original": {
"type": "git",
"url": "https://git.bug.tools/bug/tv.git"
}
},
"catppuccin": { "catppuccin": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
@@ -1303,6 +1323,7 @@
"inputs": { "inputs": {
"aerothemeplasma": "aerothemeplasma", "aerothemeplasma": "aerothemeplasma",
"auto-cpufreq": "auto-cpufreq", "auto-cpufreq": "auto-cpufreq",
"bug-tv": "bug-tv",
"catppuccin": "catppuccin", "catppuccin": "catppuccin",
"catppuccin-userstyles-nix": "catppuccin-userstyles-nix", "catppuccin-userstyles-nix": "catppuccin-userstyles-nix",
"copyparty": "copyparty", "copyparty": "copyparty",
+4 -3
View File
@@ -99,8 +99,9 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
/* bug-tv = {
bugtv.url = "g" url = "git+https://git.bug.tools/bug/tv.git";
*/ inputs.nixpkgs.follows = "nixpkgs";
};
}; };
} }
+3 -2
View File
@@ -12,8 +12,9 @@
invidious invidious
mailserver mailserver
# matrix # matrix
redlib redlib
# sish bugtv
# sish
vscode-server vscode-server
gitea gitea
# omnisearch # omnisearch
+14 -2
View File
@@ -1,7 +1,19 @@
{ { inputs, ... }: {
den.aspects.bugtv = { 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;
};
}; };
}; };
} }
+1
View File
@@ -19,6 +19,7 @@
mail = 8088; mail = 8088;
email = 8088; email = 8088;
llama = 8080; llama = 8080;
"api.tv" = 8789;
}; };
}; };
} }