mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
8 lines
193 B
Bash
8 lines
193 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
ARG_NODE=$1
|
|
shift
|
|
|
|
exec nix build --no-link --print-out-paths \
|
|
"${NF_CONFIG_ROOT}#nixosConfigurations.$ARG_NODE.config.system.build.toplevel" \
|
|
--show-trace "$@"
|