33 lines
467 B
Nix
Raw Normal View History

2024-08-22 01:21:49 -04:00
{ ... }:
{
boot.initrd.luks.devices = {
"nixos-pv" = {
2024-08-22 02:41:08 -04:00
device = "/dev/disk/by-uuid/614787a6-784a-4932-b787-cb6424725444";
2024-08-22 01:21:49 -04:00
preLVM = true;
allowDiscards = true;
};
};
fileSystems = {
"/".options = [
"noatime"
"nodiratime"
"discard"
];
"/home".options = [
"noatime"
"nodiratime"
"discard"
];
2024-08-22 01:37:20 -04:00
"/boot".options = [
2024-08-22 01:21:49 -04:00
"noatime"
"nodiratime"
"discard"
];
};
}