flake.nix simplified splashImage changing

Fixed problem that occured when setting custom spalsh image for NixOS
This commit is contained in:
Hamburgir 2024-02-16 17:55:23 +05:30
parent 000171da27
commit d5c82f7213
1 changed files with 1 additions and 5 deletions

View File

@ -39,12 +39,8 @@
--icon ${cfg.icon};
if [ -n "${splashImage}" ]; then
filename=$(basename -- "${splashImage}")
extension="''${filename##*.}"
rm $out/grub/themes/${cfg.theme}/background.jpg;
cp ${splashImage} $out/grub/themes/${cfg.theme}/background.$extension;
cp ${splashImage} $out/grub/themes/${cfg.theme}/background;
sed -i "s/background.jpg/background.$extension/g" $out/grub/themes/${cfg.theme}/theme.txt;
${pkgs.imagemagick}/bin/convert ${splashImage} $out/grub/themes/${cfg.theme}/background.jpg;
fi;
if [ ${pkgs.lib.trivial.boolToString cfg.footer} == "false" ]; then
sed -i ':again;$!N;$!b again; s/\+ image {[^}]*}//g' $out/grub/themes/${cfg.theme}/theme.txt;