diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/prefect.nix | 7 |
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" = { |