refactor: move all seeding directories into seed mount instead of just autobrr
All checks were successful
ci / treefmt (push) Successful in 2m24s

This commit is contained in:
Ceferino Patino 2026-06-15 11:02:32 -05:00
commit 42ca80cfdf
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 6 additions and 6 deletions

View file

@ -42,8 +42,8 @@ in {
hostPath = "/var/lib/qBittorrent";
isReadOnly = false;
};
"/var/lib/qBittorrent/qBittorrent/downloads/autobrr" = {
hostPath = "/var/lib/qBittorrent/qBittorrent/downloads/autobrr";
"/var/lib/qBittorrent/qBittorrent/downloads/seed" = {
hostPath = "/var/lib/qBittorrent/qBittorrent/downloads/seed";
isReadOnly = false;
};
};
@ -133,13 +133,13 @@ in {
qbittorrent = {
requires = [
"var-lib-qBittorrent.mount"
"var-lib-qBittorrent-qBittorrent-downloads-autobrr.mount"
"var-lib-qBittorrent-qBittorrent-downloads-seed.mount"
];
after = [
"openvpn-default.service"
"var-lib-qBittorrent.mount"
"var-lib-qBittorrent-qBittorrent-downloads-autobrr.mount"
"var-lib-qBittorrent-qBittorrent-downloads-seed.mount"
];
};
openvpn-default = {

View file

@ -35,10 +35,10 @@ in {
host = "nas";
folder = "/volume1/jellyfin";
};
autobrr = {
seed = {
host = "nas";
folder = "/volume1/qbittorrent";
mountPath = "/var/lib/qBittorrent/qBittorrent/downloads/autobrr";
mountPath = "/var/lib/qBittorrent/qBittorrent/downloads/seed";
};
};
};