mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-02-01 02:05:36 +01:00
14 lines
309 B
Nix
14 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|