From 4f526083bcd48c619c7a9977fc7cb9c3c184c85b Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 31 Aug 2022 21:03:51 +0200 Subject: prefect: update filesystems for new install --- system/prefect.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'system') 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" ]; }; -- cgit 1.4.1