NixOS-Config/nixos/package-configs/radarr/configuration.nix

23 lines
334 B
Nix
Raw Normal View History

2024-01-03 22:51:17 +01:00
{
config,
pkgs,
...
}: {
#uses port 7878
services.radarr = {
enable = true;
};
2024-01-03 23:13:11 +01:00
services.nginx = {
virtualHosts = {
"radarr.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:7878";
};
};
};
};
2024-01-03 22:51:17 +01:00
}