cleanup: laptop back alive!!! so time to actually start configuring
This commit is contained in:
parent
a14eff461b
commit
05d7340746
10 changed files with 131 additions and 368 deletions
22
nixos/boot-pretty.nix
Normal file
22
nixos/boot-pretty.nix
Normal 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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue