6 lines
155 B
Bash
Executable file
6 lines
155 B
Bash
Executable file
if [[ -z "$1" ]]; then
|
|
echo "You must specify a nixosConfigurations target!"
|
|
exit
|
|
fi
|
|
|
|
nixos-rebuild build-image --image-variant sd-card --flake ".#$1"
|