1
0
Fork 0
dotfiles/system/nixos/prowlarr.nix

45 lines
1,009 B
Nix
Raw Normal View History

2023-07-16 22:17:50 +00:00
{ lib, ... }:
2023-04-13 22:12:24 +00:00
2023-04-13 20:53:38 +00:00
{
2023-05-24 11:02:56 +00:00
virtualisation.oci-containers.containers.prowlarr = {
image = "lscr.io/linuxserver/prowlarr:latest";
ports = [ "192.168.42.2:9696:9696" ];
environment = {
"PUID" = "1001";
"PGID" = "2001";
"TZ" = "Etc/UTC";
};
volumes = [
"/var/lib/prowlarr:/config"
];
extraOptions = [
"--network=ns:/var/run/netns/wg"
"--label=com.centurylinklabs.watchtower.enable=true"
"--label=io.containers.autoupdate=registry"
];
2023-04-13 20:53:38 +00:00
};
2023-05-24 11:02:56 +00:00
systemd.services.podman-prowlarr = {
2023-04-14 22:52:07 +00:00
bindsTo = [ "wg.service" ];
2023-04-14 22:04:18 +00:00
after = lib.mkForce [ "wg.service" ];
2023-04-13 20:53:38 +00:00
};
2023-04-13 22:12:24 +00:00
2023-04-14 15:45:02 +00:00
services.nginx.virtualHosts."prowlarr.internal.kempkens.network" = {
quic = true;
http3 = true;
onlySSL = true;
useACMEHost = "internal.kempkens.network";
2023-04-14 23:29:59 +00:00
extraConfig = ''
client_max_body_size 32m;
'';
2023-04-14 15:45:02 +00:00
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://192.168.42.2:9696";
2023-04-14 23:27:47 +00:00
proxyWebsockets = true;
2023-04-14 15:45:02 +00:00
};
};
2023-04-13 20:53:38 +00:00
}