hosts/TITAN: bcachefs -> xfs with lvm cache pool

This commit is contained in:
Max Headroom 2024-03-26 14:10:07 +01:00
parent f5ad79dc3a
commit 7c4f151bd2

View file

@ -13,11 +13,17 @@
"usbhid"
"sd_mod"
"sr_mod"
"dm_cache_smq"
"dm_persistent_data"
"dm_bio_prison"
"dm_bufio"
];
boot.initrd.kernelModules = [ ];
boot.initrd.kernelModules = [ "dm_cache" ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
services.lvm.boot.thin.enable = true;
fileSystems."/" = {
device = "tmprootfs";
fsType = "tmpfs";
@ -31,8 +37,8 @@
};
fileSystems."/srv/data" = {
device = "/dev/mapper/tank-freezer:/dev/disk/by-id/ata-S10C-512G-PHISON-SSD_FECA076C020806391670";
fsType = "bcachefs";
device = "/dev/mapper/tank-shelf";
fsType = "xfs";
neededForBoot = true;
};