prefect: rebuild on XFS
Alan Pearce alan@alanpearce.eu
Sun, 14 Apr 2024 15:12:30 +0200
1 files changed, 4 insertions(+), 3 deletions(-)
jump to
M system/prefect.nix → system/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" = {