2024-12-14 07:20:42 +03:00
|
|
|
{ ... }: {
|
|
|
|
fileSystems = {
|
|
|
|
"/home" = {
|
|
|
|
device = "/dev/storage/home";
|
|
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
|
|
"noatime"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-12-14 08:26:09 +03:00
|
|
|
|
|
|
|
swapDevices = [{
|
|
|
|
device = "/dev/storage/swap";
|
|
|
|
randomEncryption.enable = true;
|
|
|
|
options = [
|
|
|
|
"nofail"
|
|
|
|
];
|
|
|
|
}];
|
2024-12-14 07:20:42 +03:00
|
|
|
}
|