feat(nzbget): install
This commit is contained in:
parent
2f5065d610
commit
8683f1838b
5 changed files with 47 additions and 1 deletions
|
|
@ -17,6 +17,7 @@
|
|||
"miniflux"
|
||||
"nginx"
|
||||
"ntfy-sh"
|
||||
"nzbget"
|
||||
"paperless"
|
||||
"prowlarr"
|
||||
"qbittorrent"
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ let
|
|||
"kavita-api"
|
||||
"lidarr"
|
||||
"miniflux"
|
||||
"nzbget"
|
||||
"paperless"
|
||||
"prowlarr"
|
||||
"radarr"
|
||||
|
|
@ -123,6 +124,19 @@ in
|
|||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"NZBget" = {
|
||||
"description" = "Usenet client";
|
||||
"icon" = "nzbget.svg";
|
||||
"href" = "https://nzbget.fi33.buzz/";
|
||||
"widget" = {
|
||||
"type" = "nzbget";
|
||||
"url" = "https://nzbget.fi33.buzz/";
|
||||
"username" = "will";
|
||||
"password" = "@nzbget@";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"qBittorrent" = {
|
||||
"description" = "BitTorrent client";
|
||||
|
|
@ -301,7 +315,7 @@ in
|
|||
{
|
||||
"Media Management" = {
|
||||
style = "row";
|
||||
columns = 3;
|
||||
columns = 4;
|
||||
useEqualHeights = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
21
modules/nixos/features/nzbget.nix
Normal file
21
modules/nixos/features/nzbget.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
let
|
||||
port = 5018;
|
||||
in
|
||||
{
|
||||
services = {
|
||||
nzbget = {
|
||||
enable = true;
|
||||
settings = {
|
||||
MainDir = "/srv/nzbget";
|
||||
ControlPort = port;
|
||||
};
|
||||
group = "srv";
|
||||
};
|
||||
|
||||
nginx.virtualHosts."nzbget.fi33.buzz" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "fi33.buzz";
|
||||
locations."/".proxyPass = "http://localhost:${toString port}";
|
||||
};
|
||||
};
|
||||
}
|
||||
9
secrets/nzbget.age
Normal file
9
secrets/nzbget.age
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
age-encryption.org/v1
|
||||
-> ssh-ed25519 qLT+DQ dVoQlNoygZ2PJphsgjcNHARKCqqY8Qw7Rj3KFG4xOBc
|
||||
/iQwxHFppTms9eA65uUbueylExReDhltYO2gxRGhoYk
|
||||
-> ssh-ed25519 7+xRyQ 2ffDFWxx+fzdEr0c1U9stintGCQOIddSQR3F3N5/Kn0
|
||||
RkK+M3d3O9Kw2XI0mAEGfelu/wMmqI7FoaatMy2scdc
|
||||
-> ssh-ed25519 LtK9yQ 4KeORDGwLz3xUCwevFWjBr7F9Jl0J4hUHG32YyloqBk
|
||||
kYUveBVUZLEdU1hO+Z8S7NOtNwnPYFE4VMu4NmdPPqs
|
||||
--- ldpx8r1tWc4sCfV3oWtYMa6L6MWkRUDjtrzZ7GVC0cw
|
||||
§>!›©¨sX‰³òêß=Sì²—`•þÄ7Á™«6*
|
||||
|
|
@ -26,6 +26,7 @@ in
|
|||
"kavita.age".publicKeys = users;
|
||||
"lidarr.age".publicKeys = users;
|
||||
"miniflux-creds.age".publicKeys = users;
|
||||
"nzbget.age".publicKeys = users;
|
||||
"paperless.age".publicKeys = users;
|
||||
"porkbun-api.age".publicKeys = users;
|
||||
"protonmail-cert.age".publicKeys = users;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue