NixOS-Config/nixos/package-configs/ombi/configuration.nix
2024-01-04 13:32:13 +01:00

26 lines
404 B
Nix

{
config,
pkgs,
...
}: {
users.users = {
ombi.extraGroups = ["radarr" "sonarr" "aria2"];
};
services.ombi = {
enable = true;
port = 2368;
};
services.nginx = {
virtualHosts = {
"ombi.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:2368";
};
};
};
};
}