1
0
Fork 0

mediaserver: nfs

This commit is contained in:
Daniel Kempkens 2023-04-15 19:51:58 +02:00
parent 0dfaae50a4
commit 19f95db24c
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -12,7 +12,8 @@
services.rpcbind.enable = true;
systemd.mounts = [
systemd = {
mounts = [
{
type = "nfs";
mountConfig = {
@ -22,4 +23,12 @@
where = "/mnt/downloads";
}
];
automounts = [
{
wantedBy = [ "multi-user.target" ];
where = "/mnt/downloads";
}
];
};
}