20 lines
262 B
Nix
20 lines
262 B
Nix
{ ... }: {
|
|
fileSystems = {
|
|
"/home" = {
|
|
device = "/dev/storage/home";
|
|
fsType = "ext4";
|
|
options = [
|
|
"noatime"
|
|
];
|
|
};
|
|
};
|
|
|
|
swapDevices = [{
|
|
device = "/dev/storage/swap";
|
|
randomEncryption.enable = true;
|
|
options = [
|
|
"nofail"
|
|
];
|
|
}];
|
|
}
|