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,14 +12,23 @@
services.rpcbind.enable = true; services.rpcbind.enable = true;
systemd.mounts = [ systemd = {
{ mounts = [
type = "nfs"; {
mountConfig = { type = "nfs";
Options = "noatime"; mountConfig = {
}; Options = "noatime";
what = "10.0.0.100:/mnt/dozer/downloads"; };
where = "/mnt/downloads"; what = "10.0.0.100:/mnt/dozer/downloads";
} where = "/mnt/downloads";
]; }
];
automounts = [
{
wantedBy = [ "multi-user.target" ];
where = "/mnt/downloads";
}
];
};
} }