about summary refs log tree commit diff stats
path: root/scripts/build.sh
blob: a3ff06417534b1612518b3dc233c7e0a585a7997 (plain) (blame)
1
2
3
4
5
6
7
#! /usr/bin/env sh

for host in "server2" "server3"; do
    nix build ".#nixosConfigurations.$host.config.system.build.toplevel" --print-out-paths --no-link --option max-jobs 1
done

# vim: ft=sh