diff --git a/hosts/common/optional/fileserver/bind-mounts/media.nix b/hosts/common/optional/fileserver/bind-mounts/media.nix deleted file mode 100644 index 39be6e6..0000000 --- a/hosts/common/optional/fileserver/bind-mounts/media.nix +++ /dev/null @@ -1,13 +0,0 @@ -{configVars, ...}: let - homeshareDataLocation = configVars.locations.homeshareDataLocation; -in -{ - fileSystems."/media/media" = { - device = "${homeshareDataLocation}/media"; - fsType = "none"; - options = [ "bind" ]; - }; -} - - - diff --git a/hosts/common/optional/fileserver/bind-mounts/personal.nix b/hosts/common/optional/fileserver/bind-mounts/personal.nix deleted file mode 100644 index 7222550..0000000 --- a/hosts/common/optional/fileserver/bind-mounts/personal.nix +++ /dev/null @@ -1,13 +0,0 @@ -{configVars, ...}: let - homeshareDataLocation = configVars.locations.homeshareDataLocation; -in -{ - fileSystems."/media/personal" = { - device = "${homeshareDataLocation}/personal"; - fsType = "none"; - options = [ "bind" ]; - }; -} - - - diff --git a/hosts/common/optional/fileserver/bind-mounts/photos.nix b/hosts/common/optional/fileserver/bind-mounts/photos.nix deleted file mode 100644 index 932e54a..0000000 --- a/hosts/common/optional/fileserver/bind-mounts/photos.nix +++ /dev/null @@ -1,13 +0,0 @@ -{configVars, ...}: let - homeshareDataLocation = configVars.locations.homeshareDataLocation; -in -{ - fileSystems."/media/photos" = { - device = "${homeshareDataLocation}/photos"; - fsType = "none"; - options = [ "bind" ]; - }; -} - - -