From 01fb0eee57fed6907ca0855f4df143376d2cf614 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 16 Jul 2020 14:13:39 +0200 Subject: prefect: mount NTFS filesystems --- system/prefect.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/system/prefect.nix b/system/prefect.nix index 6413c962..f015beae 100644 --- a/system/prefect.nix +++ b/system/prefect.nix @@ -34,6 +34,17 @@ Option "TripleBuffer" "on" ''; + fileSystems."/data" = { + label = "Data"; + fsType = "ntfs"; + options = ["rw" "uid=1000"]; + }; + fileSystems."/windows" = { + label = "Windows"; + fsType = "ntfs"; + options = ["rw" "uid=1000"]; + }; + services.xserver = { xautolock.enable = pkgs.lib.mkForce false; }; -- cgit 1.4.1