summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-06-21 10:06:18 +0200
committerFlorian Klink <flokli@flokli.de>2020-06-21 13:48:17 +0200
commitafa627730e6ce0e9743b6ce107cb84a4d6870152 (patch)
tree7eaa4190e9026b77f43fc76465fbdceb38ca8b5b /nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
parent54129e72b4610b80843d86537c15e1ebc06628c9 (diff)
downloadnixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar.gz
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar.bz2
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar.lz
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar.xz
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.tar.zst
nixpkgs-afa627730e6ce0e9743b6ce107cb84a4d6870152.zip
nixos/sd-image-*: use boot.loader.generic-extlinux-compatible.populateCmd
While getting rid of the separate extlinux-conf-builder import, this now
also honors boot.loader.timeout in the initial sd card image if
specified.
Diffstat (limited to 'nixos/modules/installer/cd-dvd/sd-image-aarch64.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/sd-image-aarch64.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
index 2d34406a032..bef6cd2fb5a 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
@@ -2,12 +2,6 @@
 # nix-build nixos -I nixos-config=nixos/modules/installer/cd-dvd/sd-image-aarch64.nix -A config.system.build.sdImage
 { config, lib, pkgs, ... }:
 
-let
-  extlinux-conf-builder =
-    import ../../system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix {
-      pkgs = pkgs.buildPackages;
-    };
-in
 {
   imports = [
     ../../profiles/base.nix
@@ -56,7 +50,7 @@ in
       '';
     populateRootCommands = ''
       mkdir -p ./files/boot
-      ${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./files/boot
+      ${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot
     '';
   };