mediaserver: remaining nfs mounts
This commit is contained in:
parent
451536b556
commit
144527067e
1 changed files with 56 additions and 0 deletions
|
@ -26,6 +26,42 @@
|
||||||
what = "10.0.0.100:/mnt/dozer/downloads";
|
what = "10.0.0.100:/mnt/dozer/downloads";
|
||||||
where = "/mnt/downloads";
|
where = "/mnt/downloads";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
type = "nfs";
|
||||||
|
mountConfig = {
|
||||||
|
Options = "noatime";
|
||||||
|
};
|
||||||
|
what = "10.0.0.100:/mnt/dozer/media/TV Shows";
|
||||||
|
where = "/mnt/media/TV Shows";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
type = "nfs";
|
||||||
|
mountConfig = {
|
||||||
|
Options = "noatime";
|
||||||
|
};
|
||||||
|
what = "10.0.0.100:/mnt/dozer/media/Documentaries";
|
||||||
|
where = "/mnt/media/Documentaries";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
type = "nfs";
|
||||||
|
mountConfig = {
|
||||||
|
Options = "noatime";
|
||||||
|
};
|
||||||
|
what = "10.0.0.100:/mnt/dozer/MediaVault/Anime";
|
||||||
|
where = "/mnt/media/Anime";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
type = "nfs";
|
||||||
|
mountConfig = {
|
||||||
|
Options = "noatime";
|
||||||
|
};
|
||||||
|
what = "10.0.0.100:/mnt/dozer/media/Movies";
|
||||||
|
where = "/mnt/media/Movies";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
automounts = [
|
automounts = [
|
||||||
|
@ -33,6 +69,26 @@
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
where = "/mnt/downloads";
|
where = "/mnt/downloads";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
where = "/mnt/media/TV Shows";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
where = "/mnt/media/Documentaries";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
where = "/mnt/media/Anime";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
where = "/mnt/media/Movies";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue