mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 10:39:42 +01:00
9 lines
193 B
Bash
9 lines
193 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
for profile in $(find .. -name \*.nix); do
|
||
|
echo $profile >&2
|
||
|
nixos-rebuild -I nixos-config=build-test.nix -I nixos-hardware-profile=$profile dry-build
|
||
|
done
|