9 lines
173 B
Bash
Executable File
9 lines
173 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
for flavor in {macbook-pro-nixos,pi5}; do
|
|
nh os build --hostname="${flavor}" --out-link="result-${flavor}"
|
|
done
|
|
|
|
attic push nas-cache result*
|