prefect: mount NTFS filesystems
Alan Pearce alan@alanpearce.eu
Thu, 16 Jul 2020 14:13:39 +0200
1 files changed, 11 insertions(+), 0 deletions(-)
jump to
M system/prefect.nix → system/prefect.nix
@@ -34,6 +34,17 @@ Option "AllowIndirectGLXProtocol" "off" 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; };