diff options
author | Alan Pearce | 2020-07-16 14:13:39 +0200 |
---|---|---|
committer | Alan Pearce | 2020-07-16 14:13:39 +0200 |
commit | 01fb0eee57fed6907ca0855f4df143376d2cf614 (patch) | |
tree | ced362efe0556bb3a24b77da1481c02ebab765ff /system | |
parent | cf89261672b917c6f90961f7893e6915ae1268c2 (diff) | |
download | nixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.tar.lz nixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.tar.zst nixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.zip |
prefect: mount NTFS filesystems
Diffstat (limited to 'system')
-rw-r--r-- | system/prefect.nix | 11 |
1 files changed, 11 insertions, 0 deletions
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; }; |