nixos/hosts/common/optional/fileserver/bind-mounts/personal.nix
Sam 82b89bd6d0 FEATURE: add bind mounts for homeshare
- mount homeshare directories to media from homeshareDataLocation in configVars
2025-01-19 10:30:46 +00:00

13 lines
242 B
Nix

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