mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
18 lines
418 B
Nix
18 lines
418 B
Nix
let
|
|
vars = import ../vars.nix;
|
|
in
|
|
{
|
|
networking.firewall.allowedTCPPorts = [ 9696 ];
|
|
virtualisation.oci-containers.containers.prowlarr = {
|
|
image = "ghcr.io/linuxserver/prowlarr:latest";
|
|
ports = [ "9696:9696" ];
|
|
environment = {
|
|
PUID = "600";
|
|
PGID = "100";
|
|
TZ = "America/New_York";
|
|
};
|
|
volumes = [ "${vars.media_docker_configs}/prowlarr:/config" ];
|
|
autoStart = true;
|
|
};
|
|
}
|