From ecf61955c15b2b7e5a0f05a8be0c784b34c8b7c7 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 16 Jan 2021 20:54:31 +0100 Subject: prefect: automount NTFS filesystems via autofs --- system/prefect.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/prefect.nix b/system/prefect.nix index 28a5e9a6..36fc62e1 100644 --- a/system/prefect.nix +++ b/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 = { -- cgit 1.4.1