summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-04-14 15:12:30 +0200
committerAlan Pearce2024-04-14 15:12:30 +0200
commit4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366 (patch)
treed42c4cb29ec1dfb1b8f8040d5803fdededc2b487
parentc881813d45bf239676ea0acf7aee399ebbcbf893 (diff)
downloadnixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.tar.lz
nixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.tar.zst
nixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.zip
prefect: rebuild on XFS
-rw-r--r--system/prefect.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index 15ae26d0..9b3270ea 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -45,11 +45,12 @@
   boot.initrd.kernelModules = [ ];
   boot.kernelModules = [ "kvm-amd" ];
 
+  boot.initrd.supportedFilesystems = [ "xfs" "ext4" ];
   fileSystems = {
     "/" = {
-      device = "/dev/disk/by-partlabel/nixos-root";
-      fsType = "f2fs";
-      options = [ "atgc" "gc_merge" "lazytime" "nodiscard" ];
+      device = "/dev/disk/by-partlabel/nixos";
+      fsType = "xfs";
+      options = [ "lazytime" "nodiscard" ];
     };
 
     "/boot" = {