2024-01-03 22:51:17 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
users.users = {
|
|
|
|
ombi.extraGroups = ["radarr" "sonarr"];
|
|
|
|
};
|
|
|
|
services.ombi = {
|
|
|
|
enable = true;
|
|
|
|
port = 2368;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
virtualHosts = {
|
|
|
|
"ombi.gladtherescake.eu" = {
|
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
|
|
|
locations."/" = {
|
2024-01-03 23:06:01 +01:00
|
|
|
proxyPass = "http://localhost:2368";
|
2024-01-03 22:51:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|