MODIFY: remove bind-mounts from fileserver

This commit is contained in:
Sam 2025-01-19 11:30:04 +00:00
parent 4534d564f2
commit 4453af9e45
3 changed files with 0 additions and 39 deletions

View File

@ -1,13 +0,0 @@
{configVars, ...}: let
homeshareDataLocation = configVars.locations.homeshareDataLocation;
in
{
fileSystems."/media/media" = {
device = "${homeshareDataLocation}/media";
fsType = "none";
options = [ "bind" ];
};
}

View File

@ -1,13 +0,0 @@
{configVars, ...}: let
homeshareDataLocation = configVars.locations.homeshareDataLocation;
in
{
fileSystems."/media/personal" = {
device = "${homeshareDataLocation}/personal";
fsType = "none";
options = [ "bind" ];
};
}

View File

@ -1,13 +0,0 @@
{configVars, ...}: let
homeshareDataLocation = configVars.locations.homeshareDataLocation;
in
{
fileSystems."/media/photos" = {
device = "${homeshareDataLocation}/photos";
fsType = "none";
options = [ "bind" ];
};
}