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