nixos-framework-laptop-config/nixos/boot-pretty.nix
2025-02-20 17:21:29 -05:00

20 lines
382 B
Nix

{
config,
...
}: {
assertions = [
{
assertion = config.boot.initrd.systemd.enable;
message = "Plymouth password prompt requires systemd initrd";
}
];
boot.loader.timeout = 0; # hold space to enter menu
boot.kernelParams = ["quiet"];
boot.plymouth.enable = true;
# High-DPI scaled boot
boot.plymouth.extraConfig = ''
DeviceScale=2
'';
}