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