23 lines
339 B
Nix
23 lines
339 B
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
"/storage/hot" = {
|
|
device = "/dev/storage/hot";
|
|
fsType = "ext4";
|
|
options = [
|
|
"noatime"
|
|
"nofail"
|
|
];
|
|
};
|
|
|
|
"/storage/cold" = {
|
|
device = "/dev/storage/cold";
|
|
fsType = "ext4";
|
|
options = [
|
|
"noatime"
|
|
"nofail"
|
|
];
|
|
};
|
|
};
|
|
}
|