51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
podman = config.profile.podman;
|
||
|
bazarr = podman.servarr.bazarr;
|
||
|
name = "bazarr";
|
||
|
ip = "10.88.2.6";
|
||
|
image = "lscr.io/linuxserver/${name}:latest";
|
||
|
root = "/nas/mediaserver/servarr";
|
||
|
configVolume = "${root}/${name}";
|
||
|
mediaVolume = "${root}/data";
|
||
|
domain = "${name}.tigor.web.id";
|
||
|
user = config.profile.user;
|
||
|
uid = toString user.uid;
|
||
|
gid = toString user.gid;
|
||
|
inherit (lib) mkIf;
|
||
|
in
|
||
|
{
|
||
|
config = mkIf (podman.enable && bazarr.enable) {
|
||
|
services.caddy.virtualHosts.${domain}.extraConfig = ''
|
||
|
reverse_proxy ${ip}:6767
|
||
|
'';
|
||
|
|
||
|
system.activationScripts."podman-${name}" = ''
|
||
|
mkdir -p ${configVolume}
|
||
|
chown ${uid}:${gid} ${mediaVolume} ${configVolume}
|
||
|
'';
|
||
|
|
||
|
virtualisation.oci-containers.containers.${name} = {
|
||
|
inherit image;
|
||
|
hostname = name;
|
||
|
autoStart = true;
|
||
|
environment = {
|
||
|
PUID = uid;
|
||
|
PGID = gid;
|
||
|
TZ = "Asia/Jakarta";
|
||
|
};
|
||
|
volumes = [
|
||
|
"${configVolume}:/config"
|
||
|
"${mediaVolume}:/data"
|
||
|
];
|
||
|
extraOptions = [
|
||
|
"--ip=${ip}"
|
||
|
"--network=podman"
|
||
|
];
|
||
|
labels = {
|
||
|
"io.containers.autoupdate" = "registry";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|