prefect: automount NTFS filesystems via autofs
Alan Pearce alan@alanpearce.eu
Sat, 16 Jan 2021 20:54:31 +0100
1 files changed, 4 insertions(+), 4 deletions(-)
jump to
M system/prefect.nix → system/prefect.nix
@@ -51,12 +51,12 @@ fileSystems."/data" = { label = "Data"; fsType = "ntfs"; - options = ["rw" "uid=1000"]; + options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; }; fileSystems."/windows" = { - label = "Windows"; - fsType = "ntfs"; - options = ["rw" "uid=1000"]; + label = "Windows"; + fsType = "ntfs"; + options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; }; services.xserver = {