mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-05 13:46:14 +01:00
Merge pull request #162 from thomassdk/FixNixOSSupport
Make splashImage option a `nullOr` type
This commit is contained in:
commit
fa74d1b6af
@ -17,6 +17,7 @@
|
||||
nixosModule = { config, ... }:
|
||||
let
|
||||
cfg = config.boot.loader.grub2-theme;
|
||||
splashImage = if cfg.splashImage == null then "" else cfg.splashImage;
|
||||
resolutions = {
|
||||
"1080p" = "1920x1080";
|
||||
"ultrawide" = "2560x1080";
|
||||
@ -35,8 +36,8 @@
|
||||
--theme ${cfg.theme} \
|
||||
--icon ${cfg.icon};
|
||||
|
||||
if [ -f ${cfg.splashImage} ]; then
|
||||
cp ${cfg.splashImage} $out/grub/themes/${cfg.theme}/background.jpg;
|
||||
if [ -n "${splashImage}" ]; then
|
||||
cp ${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;
|
||||
@ -81,9 +82,9 @@
|
||||
'';
|
||||
};
|
||||
splashImage = mkOption {
|
||||
default = "";
|
||||
default = null;
|
||||
example = "/my/path/background.jpg";
|
||||
type = types.path;
|
||||
type = types.nullOr types.path;
|
||||
description = ''
|
||||
The path of the image to use for background (must be jpg).
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user