Files
nixos-blueprint/modules/shared/nixos/boot/default.nix
T
unexplrd c11eeb9d20 restructure
Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-11-27 14:33:33 +02: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;
};
};
}