nix-dotfiles/systems/palatine-hill/hardware-changes.nix

47 lines
744 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
boot = {
zfs.requestEncryptionCredentials = lib.mkForce false;
postBootCommands = ''
${pkgs.zfs}/bin/zfs load-key -a
'';
initrd = {
services.lvm.enable = true;
luks.devices = {
"nixos-pv" = {
device = "/dev/disk/by-uuid/614787a6-784a-4932-b787-cb6424725444";
preLVM = true;
allowDiscards = true;
};
};
};
};
fileSystems = {
"/".options = [
"noatime"
"nodiratime"
];
"/home".options = [
"noatime"
"nodiratime"
];
2024-08-22 01:37:20 -04:00
"/boot".options = [
"noatime"
"nodiratime"
2024-08-22 09:35:39 -04:00
"fmask=0077"
"dmask=0077"
];
2024-08-22 03:04:31 -04:00
"/nix".depends = [
"/"
"/crypto"
];
};
}