mediaserver: nfs
This commit is contained in:
parent
0dfaae50a4
commit
19f95db24c
1 changed files with 19 additions and 10 deletions
|
@ -12,14 +12,23 @@
|
|||
|
||||
services.rpcbind.enable = true;
|
||||
|
||||
systemd.mounts = [
|
||||
{
|
||||
type = "nfs";
|
||||
mountConfig = {
|
||||
Options = "noatime";
|
||||
};
|
||||
what = "10.0.0.100:/mnt/dozer/downloads";
|
||||
where = "/mnt/downloads";
|
||||
}
|
||||
];
|
||||
systemd = {
|
||||
mounts = [
|
||||
{
|
||||
type = "nfs";
|
||||
mountConfig = {
|
||||
Options = "noatime";
|
||||
};
|
||||
what = "10.0.0.100:/mnt/dozer/downloads";
|
||||
where = "/mnt/downloads";
|
||||
}
|
||||
];
|
||||
|
||||
automounts = [
|
||||
{
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
where = "/mnt/downloads";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue