Heimdall: raid mount

This commit is contained in:
Filippo Berto 2024-05-30 19:26:28 +02:00
parent 6b35dd7c26
commit 837771c836
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -15,15 +15,22 @@
extraModulePackages = [ ]; extraModulePackages = [ ];
}; };
fileSystems."/" = { fileSystems = {
device = "/dev/disk/by-uuid/24017c97-041e-460a-9d0e-3e494c91a03e"; "/" = {
fsType = "btrfs"; device = "/dev/disk/by-uuid/24017c97-041e-460a-9d0e-3e494c91a03e";
}; fsType = "btrfs";
};
fileSystems."/boot" = { "/mnt/raid" = {
device = "/dev/disk/by-uuid/7F42-D513"; device = "/dev/disk/by-uuid/d3d487e9-4ed8-4a1e-9abc-ebb0c1dc80d9";
fsType = "vfat"; fsType = "btrfs";
options = [ "fmask=0022" "dmask=0022" ]; };
"/boot" = {
device = "/dev/disk/by-uuid/7F42-D513";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
}; };
swapDevices = [ ]; swapDevices = [ ];