Files
nixos-blueprint/modules/nixos/config/boot/default.nix
2025-05-05 13:27:08 +03:00

20 lines
305 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;
};
};
}