A red and white high-contrast GRUB theme, designed for accessibility and clarity.
Add this to your configuration.nix:
{ pkgs, ... }:
let
access-grub = pkgs.fetchFromGitHub {
owner = "Boo15mario";
repo = "access-grub";
rev = "main";
sha256 = "0000000000000000000000000000000000000000000000000000"; # Replace with actual sha256
};
in
{
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
theme = "${access-grub}/red-white-grub";
};
}- Black background with white text.
- Red selection highlight for better visibility.
- Minimal and clean layout.