all repos — nixfiles @ 01fb0eee57fed6907ca0855f4df143376d2cf614

System and user configuration, managed by nix and home-manager

prefect: mount NTFS filesystems

Alan Pearce
commit

01fb0eee57fed6907ca0855f4df143376d2cf614

parent

cf89261672b917c6f90961f7893e6915ae1268c2

1 file changed, 11 insertions(+), 0 deletions(-)

jump to
M system/prefect.nixsystem/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; };