This commit is contained in:
Lucy von Overheidt 2025-09-12 20:53:18 +02:00
parent ab7cd37efb
commit a2890ed58a
8 changed files with 163 additions and 75 deletions

16
modules/boot.nix Normal file
View file

@ -0,0 +1,16 @@
{ lib, ... }:
{
nixos-boot = {
enable = true;
# Different colors
# bgColor.red = 100; # 0 - 255
# bgColor.green = 100; # 0 - 255
# bgColor.blue = 100; # 0 - 255
# If you want to make sure the theme is seen when your computer starts too fast
# duration = 3; # in seconds
};
boot.plymouth.theme = lib.mkForce "load_unload";
}