16 lines
364 B
Nix
16 lines
364 B
Nix
{ 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";
|
|
}
|