3e94068508
Update configs for NixOS 22.05. pulseaudio-modules-bt has been abandoned, and is superseded by pulseaudio's native Bluetooth functionality. Thus, remove it. Change-Id: Ic3b1dbc3c2ab092b576ba2151c93c74d4f298efc Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64969 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@tutanota.com>
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.05.tar.gz
|