This commit is contained in:
ediblerope 2026-03-30 20:49:30 +01:00 committed by GitHub
parent 68bba376fb
commit c5a8722f1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,9 +17,14 @@
fsType = "ext4";
};
fileSystems."/mnt/disk4" = {
device = "/dev/disk/by-uuid/3d1206be-7989-4fb7-aac3-2888d7363e53";
fsType = "ext4";
};
# The Combined MergerFS Pool
fileSystems."/mnt/storage" = {
device = "/mnt/disk1:/mnt/disk2:/mnt/disk3";
device = "/mnt/disk1:/mnt/disk2:/mnt/disk3:/mnt/disk4";
fsType = "fuse.mergerfs";
options = [
"defaults"
@ -67,7 +72,7 @@
boot.loader.grub = {
enable = true;
# Includes all 4 physical disks for redundancy
devices = [ "/dev/sda" "/dev/sdb" "/dev/sdc" "/dev/sdd" ];
devices = [ "/dev/sda" "/dev/sdb" "/dev/sdc" "/dev/sdd" "/dev/sde" ];
useOSProber = true;
};
};