MODIFY: remove bind-mounts from fileserver
This commit is contained in:
parent
4534d564f2
commit
4453af9e45
|
@ -1,13 +0,0 @@
|
|||
{configVars, ...}: let
|
||||
homeshareDataLocation = configVars.locations.homeshareDataLocation;
|
||||
in
|
||||
{
|
||||
fileSystems."/media/media" = {
|
||||
device = "${homeshareDataLocation}/media";
|
||||
fsType = "none";
|
||||
options = [ "bind" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{configVars, ...}: let
|
||||
homeshareDataLocation = configVars.locations.homeshareDataLocation;
|
||||
in
|
||||
{
|
||||
fileSystems."/media/personal" = {
|
||||
device = "${homeshareDataLocation}/personal";
|
||||
fsType = "none";
|
||||
options = [ "bind" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{configVars, ...}: let
|
||||
homeshareDataLocation = configVars.locations.homeshareDataLocation;
|
||||
in
|
||||
{
|
||||
fileSystems."/media/photos" = {
|
||||
device = "${homeshareDataLocation}/photos";
|
||||
fsType = "none";
|
||||
options = [ "bind" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue