all repos — nixfiles @ b3db99b6697895f78ea8ec8decbe7934469fce84

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

prefect: set more filesystem options
Alan Pearce alan@alanpearce.eu
Mon, 13 Jun 2022 23:39:48 +0200
commit

b3db99b6697895f78ea8ec8decbe7934469fce84

parent

33d5e6617ad53fb63f5e77e1561ac1377c1b6ee8

1 files changed, 20 insertions(+), 9 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -50,15 +50,26 @@ boot.extraModulePackages = with config.boot.kernelPackages; [     zenpower
   ];
 
-  fileSystems."/data" = {
-    label = "Data";
-    fsType = "ntfs";
-    options = ["rw" "uid=1000" "noauto" "x-systemd.automount"];
-  };
-  fileSystems."/windows" = {
-   label = "Windows";
-   fsType = "ntfs";
-   options = ["rw" "uid=1000" "noauto" "x-systemd.automount"];
+  fileSystems = {
+    "/".options = [ "atgc" "gc_merge" "lazytime" ];
+    "/home" = "/dev/disk/by-partlabel/home";
+    "/mnt/data" = {
+      device = "/dev/disk/by-uuid/52E422C5E422AAE5";
+      fsType = "ntfs3";
+      options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ];
+    };
+
+    "/mnt/games" = {
+      device = "/dev/disk/by-partlabel/games";
+      fsType = "ntfs3";
+      options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ];
+    };
+
+    "/mnt/windows" = {
+      device = "/dev/disk/by-partlabel/windows";
+      fsType = "ntfs3";
+      options = [ "nofail" ];
+    };
   };
 
   services.xserver = {