20 lines
369 B
Nix
20 lines
369 B
Nix
|
{ ... }: {
|
||
|
fileSystems."/storage/cold_1" = {
|
||
|
device = "/dev/storage/cold_1";
|
||
|
fsType = "ext4";
|
||
|
options = [ "nofail" ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/storage/cold_2" = {
|
||
|
device = "/dev/storage/cold_2";
|
||
|
fsType = "ext4";
|
||
|
options = [ "nofail" ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/storage/hot" = {
|
||
|
device = "/dev/storage/hot";
|
||
|
fsType = "ext4";
|
||
|
options = [ "nofail" ];
|
||
|
};
|
||
|
}
|