mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-31 18:05:36 +01:00
13 lines
309 B
Nix
13 lines
309 B
Nix
{ ... }:
|
|
{
|
|
virtualisation.oci-containers = {
|
|
containers.qbittorrent-exporter = {
|
|
image = "caseyscarborough/qbittorrent-exporter";
|
|
ports = [ "0.0.0.0:8009:17871" ];
|
|
environment = {
|
|
QBITTORRENT_PORT = "8081";
|
|
QBITTORRENT_HOST = "nuc.vpn.rfive.de";
|
|
};
|
|
};
|
|
};
|
|
}
|