nixos-config/system/smolder/boot-config.nix

16 lines
395 B
Nix
Raw Normal View History

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