switch to /data on zfs

This commit is contained in:
Cyryl Płotnicki 2023-07-29 15:54:56 +01:00
parent 84e5f7b675
commit 8037ef8adb

View file

@ -14,22 +14,12 @@
services.btrfs.autoScrub.enable = true;
services.zfs.autoScrub.enable = true;
boot.kernelParams = [ "zfs.zfs_arc_max=8589934592" ];
fileSystems."/data" = {
device = "/dev/disk/by-uuid/78e8e5b5-9068-4381-8e85-b4297607f9ea";
fsType = "btrfs";
options = [
"autodefrag"
"space_cache"
"inode_cache"
"noatime"
"nodiratime"
"compress=zstd"
];
};
boot.zfs.extraPools = [ "data" ];
fileSystems."/" = {
fileSystems."/" = {
device = "/dev/disk/by-uuid/28afab71-ff3d-4f1a-b7e4-2129572706dd";
fsType = "btrfs";
};