Fix evaluation error in the ISOs
This commit is contained in:
parent
1d6b939676
commit
c4149c7b56
@ -219,38 +219,43 @@ in
|
|||||||
|
|
||||||
###### implementation
|
###### implementation
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkMerge [
|
||||||
|
|
||||||
boot.loader.grub.devices = optional (cfg.device != "") cfg.device;
|
{ boot.loader.grub.splashImage = mkDefault (
|
||||||
|
if cfg.version == 1 then pkgs.fetchurl {
|
||||||
|
url = http://www.gnome-look.org/CONTENT/content-files/36909-soft-tux.xpm.gz;
|
||||||
|
sha256 = "14kqdx2lfqvh40h6fjjzqgff1mwk74dmbjvmqphi6azzra7z8d59";
|
||||||
|
}
|
||||||
|
# GRUB 1.97 doesn't support gzipped XPMs.
|
||||||
|
else ./winkler-gnu-blue-640x480.png);
|
||||||
|
}
|
||||||
|
|
||||||
boot.loader.grub.splashImage = mkDefault (
|
(mkIf cfg.enable {
|
||||||
if cfg.version == 1 then pkgs.fetchurl {
|
|
||||||
url = http://www.gnome-look.org/CONTENT/content-files/36909-soft-tux.xpm.gz;
|
|
||||||
sha256 = "14kqdx2lfqvh40h6fjjzqgff1mwk74dmbjvmqphi6azzra7z8d59";
|
|
||||||
}
|
|
||||||
# GRUB 1.97 doesn't support gzipped XPMs.
|
|
||||||
else ./winkler-gnu-blue-640x480.png);
|
|
||||||
|
|
||||||
system.build.installBootLoader =
|
boot.loader.grub.devices = optional (cfg.device != "") cfg.device;
|
||||||
if cfg.devices == [] then
|
|
||||||
throw "You must set the ‘boot.loader.grub.device’ option to make the system bootable."
|
|
||||||
else
|
|
||||||
"PERL5LIB=${makePerlPath [ pkgs.perlPackages.XMLLibXML pkgs.perlPackages.XMLSAX ]} " +
|
|
||||||
"${pkgs.perl}/bin/perl ${./install-grub.pl} ${grubConfig}";
|
|
||||||
|
|
||||||
system.build.grub = grub;
|
system.build.installBootLoader =
|
||||||
|
if cfg.devices == [] then
|
||||||
|
throw "You must set the ‘boot.loader.grub.device’ option to make the system bootable."
|
||||||
|
else
|
||||||
|
"PERL5LIB=${makePerlPath [ pkgs.perlPackages.XMLLibXML pkgs.perlPackages.XMLSAX ]} " +
|
||||||
|
"${pkgs.perl}/bin/perl ${./install-grub.pl} ${grubConfig}";
|
||||||
|
|
||||||
# Common attribute for boot loaders so only one of them can be
|
system.build.grub = grub;
|
||||||
# set at once.
|
|
||||||
system.boot.loader.id = "grub";
|
|
||||||
|
|
||||||
environment.systemPackages = [ grub ];
|
# Common attribute for boot loaders so only one of them can be
|
||||||
|
# set at once.
|
||||||
|
system.boot.loader.id = "grub";
|
||||||
|
|
||||||
boot.loader.grub.extraPrepareConfig =
|
environment.systemPackages = [ grub ];
|
||||||
concatStrings (mapAttrsToList (n: v: ''
|
|
||||||
${pkgs.coreutils}/bin/cp -pf "${v}" "/boot/${n}"
|
|
||||||
'') config.boot.loader.grub.extraFiles);
|
|
||||||
|
|
||||||
};
|
boot.loader.grub.extraPrepareConfig =
|
||||||
|
concatStrings (mapAttrsToList (n: v: ''
|
||||||
|
${pkgs.coreutils}/bin/cp -pf "${v}" "/boot/${n}"
|
||||||
|
'') config.boot.loader.grub.extraFiles);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user