dotfiles.nix/nixos/viridian/multimedia/sonarr/default.nix

44 lines
951 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{...}: let
2024-06-16 23:08:52 +08:00
port = "8989";
2024-08-08 09:02:42 +08:00
in {
2024-01-23 09:45:42 +08:00
virtualisation.oci-containers.containers = {
# PVR for Usenet and BitTorrent users
sonarr = {
autoStart = true;
2024-11-22 07:24:36 +08:00
image = "ghcr.io/hotio/sonarr:release-4.0.10.2544";
2024-01-23 09:45:42 +08:00
ports = [
2024-06-16 23:08:52 +08:00
"${port}:8989/tcp" # WebUI
2024-01-23 09:45:42 +08:00
];
volumes = [
# Media library
"/srv/multimedia:/data:rw"
# Container data
2024-10-16 04:59:59 +08:00
"/srv/multimedia/containers/sonarr:/config:rw"
2024-01-23 09:45:42 +08:00
];
2024-06-16 23:08:52 +08:00
environment = {
PUID = "1000";
PGID = "100";
};
2024-01-23 09:45:42 +08:00
extraOptions = [
"--network=media-stack"
];
};
};
services.traefik.dynamicConfigOptions.http.routers = {
sonarr = {
2024-11-22 07:15:34 +08:00
rule = "Host(`sonarr.home.arpa`)";
entryPoints = [
"websecure"
];
service = "sonarr";
};
};
services.traefik.dynamicConfigOptions.http.services = {
sonarr.loadBalancer.servers = [
2024-08-08 09:02:42 +08:00
{url = "http://127.0.0.1:${port}";}
];
};
2024-01-23 09:45:42 +08:00
}