From f570704277a0e6f71b7491abc172ee01915a0ab9 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sat, 13 Jan 2024 12:19:00 +0100 Subject: [PATCH] feat(grub): add theme --- configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index be912a4..0e6b092 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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"; + }; }; };