Files
nixos-blueprint/modules/nixos/config/boot/default.nix
2025-05-04 19:38:26 +03:00

21 lines
340 B
Nix

{
inputs,
pkgs,
...
}: {
imports = with inputs; [
chaotic.nixosModules.default
./loader.nix
./lanzaboote.nix
];
boot = {
plymouth.enable = true;
consoleLogLevel = 0;
kernelPackages = pkgs.linuxPackages_cachyos;
initrd = {
systemd.enable = true;
systemd.tpm2.enable = false;
};
};
}