all repos — nixfiles @ 4f526083bcd48c619c7a9977fc7cb9c3c184c85b

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

prefect: update filesystems for new install
Alan Pearce alan@alanpearce.eu
Wed, 31 Aug 2022 21:03:51 +0200
commit

4f526083bcd48c619c7a9977fc7cb9c3c184c85b

parent

e86ee191b665b57aa9f9ef0f7ebc85ed7184826e

1 files changed, 7 insertions(+), 7 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -60,24 +60,24 @@ boot.kernelModules = [ "kvm-amd" ]; 
   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" ];
     };