summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2022-06-16 15:42:59 +0200
committerAlan Pearce2022-06-16 15:42:59 +0200
commit52fe375cd0a1a2af61537d3dbed9f21812e4588f (patch)
tree369989d7295572e452dbb2c4323c9c634d54a41e
parent9497d7334faf9716dd23985bd42022f922c87eda (diff)
downloadnixfiles-52fe375cd0a1a2af61537d3dbed9f21812e4588f.tar.lz
nixfiles-52fe375cd0a1a2af61537d3dbed9f21812e4588f.tar.zst
nixfiles-52fe375cd0a1a2af61537d3dbed9f21812e4588f.zip
prefect: enable automount of secondary filesystems
-rw-r--r--system/prefect.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index 186c5b97..faff27d7 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -55,13 +55,13 @@
     "/mnt/data" = {
       device = "/dev/disk/by-uuid/52E422C5E422AAE5";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ];
+      options = [ "uid=1000" "gid=100" "x-systemd-automount" ];
     };
 
     "/mnt/games" = {
       device = "/dev/disk/by-partlabel/games";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ];
+      options = [ "uid=1000" "gid=100" "x-systemd-automount" ];
     };
 
     "/mnt/windows" = {