1
0
Fork 0

mediaserver: add additional mounts

This commit is contained in:
Daniel Kempkens 2023-04-20 12:30:16 +02:00
parent a4f67964cb
commit 87450d8f30
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 14 additions and 0 deletions

View file

@ -83,6 +83,15 @@
what = "10.0.0.100:/mnt/dozer/media/Deutsche Filme";
where = "/mnt/media/Deutsche Filme";
}
{
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=4";
};
what = "10.0.0.100:/mnt/dozer/MediaVault/YTDL";
where = "/mnt/media/YTDL";
}
];
automounts = [
@ -120,6 +129,11 @@
wantedBy = [ "multi-user.target" ];
where = "/mnt/media/Deutsche Filme";
}
{
wantedBy = [ "multi-user.target" ];
where = "/mnt/media/YTDL";
}
];
};
}