prefect: mount NTFS filesystems
1 file 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; };