Nix: fix extension of splashImage

This commit is contained in:
Leon 2024-03-26 10:21:10 +01:00
parent eda1b86dd8
commit a634923206
1 changed files with 1 additions and 4 deletions

View File

@ -139,13 +139,10 @@
grub2-theme
];
boot.loader.grub =
let
ext = if cfg.splashImage == null then "jpg" else last (splitString "." cfg.splashImage);
in
{
theme = "${grub2-theme}/grub/themes/${cfg.theme}";
splashImage =
"${grub2-theme}/grub/themes/${cfg.theme}/background.${ext}";
"${grub2-theme}/grub/themes/${cfg.theme}/background.jpg";
gfxmodeEfi = "${resolution},auto";
gfxmodeBios = "${resolution},auto";
extraConfig = ''