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

12 lines
141 B
Nix
Raw Normal View History

2024-12-14 07:20:42 +03:00
{ ... }: {
fileSystems = {
"/home" = {
device = "/dev/storage/home";
fsType = "ext4";
options = [
"noatime"
];
};
};
}