20 lines
454 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ ... }:
2023-03-23 01:58:10 +03:00
let
nas-path = "/media/nas/media-stack";
in {
virtualisation.oci-containers.containers.sonarr = {
2022-04-04 14:53:16 +03:00
autoStart = true;
environment = {
2023-03-23 01:58:10 +03:00
PUID = "1000";
PGID = "100";
2022-04-04 14:53:16 +03:00
UMASK = "002";
TZ = "Europe/Moscow";
};
2023-03-23 01:58:10 +03:00
extraOptions = [ "--pod=media-stack" ];
2024-02-10 02:07:01 +03:00
image = "docker.io/linuxserver/sonarr:version-4.0.1.929";
2022-04-04 14:53:16 +03:00
volumes = [
2023-03-23 01:58:10 +03:00
"${nas-path}/configs/sonarr:/config"
"${nas-path}:/data"
2022-04-04 14:53:16 +03:00
];
};
}