all repos — nixfiles @ 4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366

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

prefect: rebuild on XFS
Alan Pearce alan@alanpearce.eu
Sun, 14 Apr 2024 15:12:30 +0200
commit

4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366

parent

c881813d45bf239676ea0acf7aee399ebbcbf893

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -45,11 +45,12 @@ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ];   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" = {