b3ebf5ba0b
Update and also adjust configs so that they work with NixOS 22.11. Change-Id: Ia0fed68f5449ccf56b25660f5cdbc8c239064748 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70210 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
14 lines
330 B
Bash
Executable file
14 lines
330 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
config=$1
|
|
|
|
if [ -z "$config" ] || [ ! -f "$config" ]; then
|
|
echo "Usage: $0 <config.nix>"
|
|
echo "No config given. Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
nix-build '<nixpkgs/nixos>' \
|
|
-A config.system.build.isoImage \
|
|
-I nixos-config=$config \
|
|
-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-22.11.tar.gz
|