feat(grub): add theme

main
mandlm 2024-01-13 12:19:00 +01:00
parent 25bc7158e0
commit f570704277
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@
nixpkgs.config.allowUnfree = true;
boot.loader = {
timeout = 1;
timeout = 5;
efi.canTouchEfiVariables = true;
grub = {
@ -12,6 +12,10 @@
device = "nodev";
configurationLimit = 5;
useOSProber = true;
theme = pkgs.sleek-grub-theme.override {
withBanner = "welcome to ${config.networking.hostName}";
withStyle = "dark";
};
};
};