diff options
author | Alan Pearce | 2022-08-31 21:03:51 +0200 |
---|---|---|
committer | Alan Pearce | 2022-08-31 21:03:51 +0200 |
commit | 4f526083bcd48c619c7a9977fc7cb9c3c184c85b (patch) | |
tree | b9ab796487590aa4e5484fe9c4fdc75dccaa5008 | |
parent | e86ee191b665b57aa9f9ef0f7ebc85ed7184826e (diff) | |
download | nixfiles-4f526083bcd48c619c7a9977fc7cb9c3c184c85b.tar.lz nixfiles-4f526083bcd48c619c7a9977fc7cb9c3c184c85b.tar.zst nixfiles-4f526083bcd48c619c7a9977fc7cb9c3c184c85b.zip |
prefect: update filesystems for new install
-rw-r--r-- | system/prefect.nix | 14 |
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" ]; }; |