all repos — nixfiles @ ecf61955c15b2b7e5a0f05a8be0c784b34c8b7c7

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

prefect: automount NTFS filesystems via autofs

Alan Pearce
commit

ecf61955c15b2b7e5a0f05a8be0c784b34c8b7c7

parent

15e6d3bfa4643fea6521f55563d349558e33dca9

1 file changed, 4 insertions(+), 4 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -51,12 +51,12 @@
fileSystems."/data" = { label = "Data"; fsType = "ntfs"; - options = ["rw" "uid=1000"]; + options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; }; fileSystems."/windows" = { - label = "Windows"; - fsType = "ntfs"; - options = ["rw" "uid=1000"]; + label = "Windows"; + fsType = "ntfs"; + options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; }; services.xserver = {