cleanup: laptop back alive!!! so time to actually start configuring

This commit is contained in:
Evar 2025-01-17 21:51:20 -05:00
parent a14eff461b
commit 05d7340746
10 changed files with 131 additions and 368 deletions

22
nixos/boot-pretty.nix Normal file
View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}: {
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
'';
}