mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-05 15:56:14 +01:00
Merge pull request #187 from AnotherGroupChat/master
Update Nix install for theme.txt control + fix module reference
This commit is contained in:
commit
bfedd16365
54
flake.nix
54
flake.nix
@ -14,10 +14,12 @@
|
||||
in
|
||||
with nixpkgs.lib;
|
||||
rec {
|
||||
nixosModule = { config, ... }:
|
||||
nixosModules.default = { config, ... }:
|
||||
let
|
||||
cfg = config.boot.loader.grub2-theme;
|
||||
splashImage = if cfg.splashImage == null then "" else cfg.splashImage;
|
||||
hasBootMenuConfig = cfg.bootMenuConfig != null;
|
||||
hasTerminalConfig = cfg.terminalConfig != null;
|
||||
resolutions = {
|
||||
"1080p" = "1920x1080";
|
||||
"ultrawide" = "2560x1080";
|
||||
@ -37,11 +39,30 @@
|
||||
--icon ${cfg.icon};
|
||||
|
||||
if [ -n "${splashImage}" ]; then
|
||||
cp ${splashImage} $out/grub/themes/${cfg.theme}/background.jpg;
|
||||
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;
|
||||
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;
|
||||
fi;
|
||||
if [ ${pkgs.lib.trivial.boolToString hasBootMenuConfig} == "true" ]; then
|
||||
sed -i ':again;$!N;$!b again; s/\+ boot_menu {[^}]*}//g' $out/grub/themes/${cfg.theme}/theme.txt;
|
||||
cat << EOF >> $out/grub/themes/${cfg.theme}/theme.txt
|
||||
+ boot_menu {
|
||||
${if cfg.bootMenuConfig == null then "" else cfg.bootMenuConfig}
|
||||
}
|
||||
EOF
|
||||
fi;
|
||||
if [ ${pkgs.lib.trivial.boolToString hasTerminalConfig} == "true" ]; then
|
||||
sed -i 's/^terminal-.*$//g' $out/grub/themes/${cfg.theme}/theme.txt
|
||||
cat << EOF >> $out/grub/themes/${cfg.theme}/theme.txt
|
||||
${if cfg.terminalConfig == null then "" else cfg.terminalConfig}
|
||||
EOF
|
||||
fi;
|
||||
'';
|
||||
};
|
||||
resolution = resolutions."${cfg.screen}";
|
||||
@ -86,7 +107,25 @@
|
||||
example = "/my/path/background.jpg";
|
||||
type = types.nullOr types.path;
|
||||
description = ''
|
||||
The path of the image to use for background (must be jpg).
|
||||
The path of the image to use for background (must be jpg or png).
|
||||
'';
|
||||
};
|
||||
bootMenuConfig = mkOption {
|
||||
default = null;
|
||||
example = "left = 30%";
|
||||
type = types.nullOr types.string;
|
||||
description = ''
|
||||
Grub theme definition for boot_menu.
|
||||
Refer to config/theme-*.txt for reference.
|
||||
'';
|
||||
};
|
||||
terminalConfig = mkOption {
|
||||
default = null;
|
||||
example = "terminal-font: \"Terminus Regular 18\"";
|
||||
type = types.nullOr types.string;
|
||||
description = ''
|
||||
Replaces grub theme definition for terminial-*.
|
||||
Refer to config/theme-*.txt for reference.
|
||||
'';
|
||||
};
|
||||
footer = mkOption {
|
||||
@ -103,9 +142,14 @@
|
||||
environment.systemPackages = [
|
||||
grub2-theme
|
||||
];
|
||||
boot.loader.grub = {
|
||||
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.jpg";
|
||||
splashImage =
|
||||
"${grub2-theme}/grub/themes/${cfg.theme}/background.${ext}";
|
||||
gfxmodeEfi = "${resolution},auto";
|
||||
gfxmodeBios = "${resolution},auto";
|
||||
extraConfig = ''
|
||||
|
Loading…
Reference in New Issue
Block a user