Merge branch 'grub-custom-splash' into 'main'

add custom crans splash screen for grub

See merge request nounous/nixos!56
merge-requests/56/merge
lzebulon 2026-03-04 10:26:12 +01:00
commit 96aaa0ca1e
3 changed files with 8 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -8,6 +8,7 @@ in
{
imports = [
./age.nix
./grub.nix
./home.nix
./locale.nix
./networking.nix

View File

@ -0,0 +1,7 @@
{...}:
{
boot.loader.grub = {
splashImage = ../../assets/nix-crans_bootloader.png;
backgroundColor = "#ad1f1f";
};
}