NixOS-Config/nixos/package-configs/radarr/configuration.nix
2024-01-03 23:13:11 +01:00

23 lines
334 B
Nix

{
config,
pkgs,
...
}: {
#uses port 7878
services.radarr = {
enable = true;
};
services.nginx = {
virtualHosts = {
"radarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:7878";
};
};
};
};
}