29 lines
607 B
Nix
29 lines
607 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
jellyService = config.systemd.services.jellyfin.serviceConfig;
|
|
in {
|
|
systemd.services."docker-jfa-go_jfa-go" = {
|
|
after = ["jellyfin.service"];
|
|
partOf = ["jellyfin.service"];
|
|
};
|
|
|
|
khepri.compositions."jfa-go" = {
|
|
networks.proxy_net = {external = true;};
|
|
|
|
services."jfa-go" = {
|
|
image = import ./images/jfa-go.nix pkgs;
|
|
restart = "always";
|
|
|
|
ports = ["8056:8056"];
|
|
networks = ["proxy_net"];
|
|
|
|
volumes = [
|
|
"${jellyService.WorkingDirectory}/jfa-go:/data"
|
|
"/etc/localtime:/etc/localtime:ro"
|
|
];
|
|
};
|
|
};
|
|
}
|