1

Compare commits

..

4 Commits

4 changed files with 196 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{
config,
lib,
pkgs,
...
}: let
bazarrVersion = "1.5.3";
in {
virtualisation.oci-containers.containers = {
bazarr = {
image = "linuxserver/bazarr:${bazarrVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "6767:6766"
];
volumes = [
"/media/Movie:/media/movies"
"/media/Show:/media/shows"
"bazarr_config:/config"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}

View File

@ -0,0 +1,49 @@
{
config,
lib,
pkgs,
...
}: let
radarrVersion = "5.28.0";
in {
virtualisation.oci-containers.containers = {
radarr = {
image = "linuxserver/radarr:${radarrVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "7878:7878"
];
volumes = [
"/media/Movie/0-MakeMKV:/media/downloads"
"/media/Movie:/media/movies"
"radarr_config:/config"
];
environment = {
PUID = "3000";
PGID = "3000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}

View File

@ -0,0 +1,49 @@
{
config,
lib,
pkgs,
...
}: let
sabnzbdVersion = "4.5.5";
in {
virtualisation.oci-containers.containers = {
sabnzbd = {
image = "linuxserver/sabnzbd:${sabnzbdVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "8080:8080"
];
volumes = [
"/media/Movie/0-MakeMKV:/media/movies"
"/media/Show/0-MakeMKV:/media/shows"
"sabnzbd_config:/config"
];
environment = {
PUID = "3000";
PGID = "3000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}

View File

@ -0,0 +1,49 @@
{
config,
lib,
pkgs,
...
}: let
sonarrVersion = "4.0.16";
in {
virtualisation.oci-containers.containers = {
sonarr = {
image = "linuxserver/sonarr:${sonarrVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
"8989:8989"
];
volumes = [
"/media/Show/0-MakeMKV:/media/downloads"
"/media/Show:/media/shows"
"sonarr_config:/config"
];
environment = {
PUID = "3000";
PGID = "3000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}