2023-12-04 23:02:43 +00:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
boot = {
|
2023-12-04 23:34:25 +00:00
|
|
|
loader.grub.enable = false;
|
|
|
|
loader.generic-extlinux-compatible.enable = true;
|
|
|
|
|
2024-01-16 04:36:28 +00:00
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
2023-12-04 23:02:43 +00:00
|
|
|
tmp.cleanOnBoot = true;
|
|
|
|
|
|
|
|
initrd.luks.devices.${config.networking.hostName} = {
|
|
|
|
device = "/dev/disk/by-uuid/b6b4bd3d-d7e1-463e-9a73-6d0f620e914a";
|
|
|
|
preLVM = true;
|
|
|
|
allowDiscards = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|