nix/host/x86_64-linux/laptop/Filesystem.nix

12 lines
159 B
Nix

{ ... }:
{
fileSystems."/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [
"noatime"
"nofail"
];
};
}