dotfiles/modules/boot.nix

17 lines
364 B
Nix
Raw Permalink Normal View History

2025-09-12 20:53:18 +02:00
{ 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";
}