diff options
author | lassulus <lass@xerxes.r> | 2019-10-14 13:38:27 +0200 |
---|---|---|
committer | lassulus <lass@xerxes.r> | 2019-10-14 13:38:27 +0200 |
commit | ed60af5f445767b512ebb8ce3490bc78838e6f8e (patch) | |
tree | 700fca47aa2a2841e89c8d7d8e1460c217e65090 | |
parent | ea2c783e1409ed4861c4373164c62fdba8a5870d (diff) |
l hilum.r: add isos from /boot/iso
-rw-r--r-- | lass/1systems/hilum/config.nix | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/lass/1systems/hilum/config.nix b/lass/1systems/hilum/config.nix index 998fa1478..f57d275d8 100644 --- a/lass/1systems/hilum/config.nix +++ b/lass/1systems/hilum/config.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: { imports = [ <stockholm/lass> @@ -14,15 +14,19 @@ krebs.build.host = config.krebs.hosts.hilum; - boot.loader.grub.extraEntries = '' - menuentry "grml" { - iso_path=/isos/grml.iso - export iso_path - search --set=root --file $iso_path - loopback loop $iso_path - root=(loop) - configfile /boot/grub/loopback.cfg - loopback --delete loop - } - ''; + boot.loader.grub = { + extraEntries = '' + submenu isos { + source /grub/autoiso.cfg + } + ''; + extraFiles."/grub/autoiso.cfg" = (pkgs.stdenv.mkDerivation { + name = "autoiso.cfg"; + src = pkgs.grub2.src; + phases = [ "unpackPhase" "installPhase" ]; + installPhase = '' + cp docs/autoiso.cfg $out + ''; + }); + }; } |