diff options
author | Alan Pearce | 2024-04-14 15:12:30 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-14 15:12:30 +0200 |
commit | 4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366 (patch) | |
tree | d42c4cb29ec1dfb1b8f8040d5803fdededc2b487 /system | |
parent | c881813d45bf239676ea0acf7aee399ebbcbf893 (diff) | |
download | nixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.tar.lz nixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.tar.zst nixfiles-4d4a6d13ae5f5c7a2e6db28217d79bfe1be5f366.zip |
prefect: rebuild on XFS
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" = { |