mount nfs share into qbittorrent container

This commit is contained in:
Dmitriy Kholkin 2024-12-28 11:54:49 +03:00
parent d1898c1392
commit 35d6d350cc
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -1,6 +1,9 @@
{ ... }:
{ config, pkgs, ... }:
let
backend = "podman";
nas-path = "/media/nas/media-stack";
volume = "local-nfs";
nfs-share = "10.10.10.11:/";
in {
virtualisation.oci-containers.containers.qbittorrent = {
autoStart = true;
@ -11,11 +14,27 @@ in {
UMASK = "002";
TZ = "Europe/Moscow";
TORRENTING_PORT = "7000";
DOCKER_MODS = "ghcr.io/gabe565/linuxserver-mod-vuetorrent";
};
extraOptions = [ "--pod=media-stack" ];
volumes = [
"${nas-path}/configs/qbittorrent:/config"
"${nas-path}:/data"
"${volume}:/nfs"
];
};
systemd.services."podman-create-volume-${volume}" = let
start = pkgs.writeShellScript "create-volume-${volume}" ''
podman volume exists ${volume} || podman volume create --opt type=nfs4 --opt o=rw --opt device=${nfs-share} ${volume}
'';
in rec {
path = [ config.virtualisation.podman.package ];
before = [ "${backend}-qbittorrent.service" ];
requiredBy = before;
serviceConfig = {
Type = "oneshot";
ExecStart = start;
};
};
}