12 lines
141 B
Nix
12 lines
141 B
Nix
|
{ ... }: {
|
||
|
fileSystems = {
|
||
|
"/home" = {
|
||
|
device = "/dev/storage/home";
|
||
|
fsType = "ext4";
|
||
|
options = [
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|