summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/prefect.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index 06a9413a..6c80fd10 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -60,24 +60,24 @@
 
   fileSystems = {
     "/" = {
-      device = "/dev/disk/by-uuid/05d67a65-56ad-4c55-98dc-93cec95e34ae";
+      device = "/dev/disk/by-partlabel/nixos-root";
       fsType = "f2fs";
-      options = [ "atgc" "gc_merge" "lazytime" ];
+      options = [ "atgc" "gc_merge" "lazytime" "nodiscard" ];
     };
 
     "/boot" = {
-      device = "/dev/disk/by-uuid/7034-6991";
+      device = "/dev/disk/by-partlabel/efi-boot";
       fsType = "vfat";
     };
 
     "/home" = {
-      device = "/dev/disk/by-uuid/0128f7e2-8247-435a-bc30-904574d7bf8c";
-      fsType = "f2fs";
-      options = [ "atgc" "gc_merge" "lazytime" ];
+      device = "/dev/disk/by-partlabel/home";
+      fsType = "ext4";
+      options = [ "lazytime" "nodiscard" ];
     };
 
     "/mnt/data" = {
-      device = "/dev/disk/by-uuid/52E422C5E422AAE5";
+      device = "/dev/disk/by-partlabel/data";
       fsType = "ntfs3";
       options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ];
     };