Added ombi, radarr, and sonarr

This commit is contained in:
Lillian-Violet 2024-01-03 22:51:17 +01:00
parent 68e5063419
commit 5fd869242e
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
config,
pkgs,
...
}: {
users.users = {
ombi.extraGroups = ["radarr" "sonarr"];
};
#uses port 7878
services.ombi = {
enable = true;
port = 2368;
};
services.nginx = {
virtualHosts = {
"ombi.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:2386";
};
};
};
};
}

View file

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
#uses port 7878
services.radarr = {
enable = true;
};
}

View file

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
#uses port 8989
services.radarr = {
enable = true;
};
}