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

11 lines
143 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
fileSystems."/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [
"noatime"
"nofail"
];
};
2024-03-29 09:05:08 +03:00
}