2024-12-18 09:40:11 +03:00
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
fileSystems = {
|
|
|
|
"/storage/hot" = {
|
|
|
|
device = "/dev/storage/hot";
|
|
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
|
|
"noatime"
|
|
|
|
"nofail"
|
|
|
|
];
|
|
|
|
};
|
2024-03-29 09:05:08 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
"/storage/cold_1" = {
|
|
|
|
device = "/dev/storage/cold_1";
|
|
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
|
|
"noatime"
|
|
|
|
"noauto"
|
|
|
|
"nofail"
|
|
|
|
];
|
|
|
|
};
|
2024-03-29 09:05:08 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
"/storage/cold_2" = {
|
|
|
|
device = "/dev/storage/cold_2";
|
|
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
|
|
"noatime"
|
|
|
|
"noauto"
|
|
|
|
"nofail"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-03-29 09:05:08 +03:00
|
|
|
}
|