dotfiles/modules/boot.nix
Lucy von Overheidt a2890ed58a meowmeow
2025-09-12 20:53:18 +02:00

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";
}