infrastructure/nixos/sonarr.nix
2024-01-11 22:01:58 -08:00

13 lines
200 B
Nix

_: {
services = {
sonarr = {
enable = true;
};
nginx.virtualHosts."sonarr.gensokyo.zone" = {
locations."/".proxyPass = "http://localhost:8989";
};
};
# Port 8989
}