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