nix/host/x86_64-linux/laptop/Filesystem.nix
2024-11-06 01:07:30 +03:00

11 lines
143 B
Nix

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