Configure grub theme

This commit is contained in:
Isshi0417 2024-07-13 23:27:28 +09:00
parent e19c390afe
commit 727bd04c8f

View File

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
# Bootloader. # Bootloader.
@ -11,6 +11,15 @@
efiSupport = true; efiSupport = true;
device = "nodev"; device = "nodev";
useOSProber = true; useOSProber = true;
theme = "${
(pkgs.fetchFromGitHub {
owner = "AllJavi";
repo = "tartarus-grub";
rev = "b116360a2a0991062a4d728cb005dfd309fbb82a";
hash = "sha256-/Pzr0R3zzOXUi2pAl8Lvg6aHTiwXTIrxQ1vscbEK/kU=";
})
}/tartarus/";
}; };
}; };
} }