feat: changed host share to allow servarr to be able to hardlink torrent files
All checks were successful
ci / treefmt (push) Successful in 1m56s

This commit is contained in:
Ceferino Patino 2026-06-23 15:57:35 -05:00
commit c433746bc3
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
3 changed files with 5 additions and 10 deletions

View file

@ -42,7 +42,7 @@ in {
isReadOnly = false;
};
"/var/lib/qBittorrent/qBittorrent/downloads/seed" = {
hostPath = "/var/lib/qBittorrent/qBittorrent/downloads/seed";
hostPath = "/mnt/nfs/servarr/torrents";
isReadOnly = false;
};
};

View file

@ -31,14 +31,9 @@ in {
};
storage = {
nfs.mounts = {
jellyfin = {
servarr = {
host = "nas";
folder = "/volume1/jellyfin";
};
seed = {
host = "nas";
folder = "/volume1/qbittorrent";
mountPath = "/var/lib/qBittorrent/qBittorrent/downloads/seed";
folder = "/volume1/servarr";
};
};
};

View file

@ -48,9 +48,9 @@ in {
};
};
nfs.mounts = {
jellyfin = {
servarr = {
host = "nas";
folder = "/volume1/jellyfin";
folder = "/volume1/servarr";
};
};
};