nixos/scripts/build-raspi-image.sh

11 lines
161 B
Bash
Raw Normal View History

2022-11-05 20:00:33 +01:00
#!/usr/bin/env bash
host=$1
image=~/Downloads/$host.img.zst
2022-11-05 20:00:33 +01:00
cd ~/.nixos/
2022-11-05 20:00:33 +01:00
2023-11-26 12:14:08 +01:00
nom build .#images.$host &&
cp result/sd-image/*.img.zst $image
2023-04-01 12:08:02 +02:00
chmod 644 $image