diff options
author | tv <tv@shackspace.de> | 2015-05-21 22:33:16 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-21 22:33:16 +0200 |
commit | ac764394050f6fc39e406799085259d3fc08956a (patch) | |
tree | c5deade7085a8e63ef36a72afea58e09593c096a /next/bin/query | |
parent | b27ec1aafa813740941d9194f1e7e113d5de8244 (diff) |
next: initial commit
Diffstat (limited to 'next/bin/query')
-rwxr-xr-x | next/bin/query | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/next/bin/query b/next/bin/query new file mode 100755 index 000000000..0e55a6cec --- /dev/null +++ b/next/bin/query @@ -0,0 +1,20 @@ +#! /bin/sh +set -euf + +host=$1 +attr=$2 + +nixos_config=$config_root/modules/$host +secrets_nix=$secrets_root/$host/nix +secrets_rsync=$secrets_root/$host/rsync + +nix-instantiate \ + -I "$nixpkgs" \ + -I nixos-config="$nixos_config" \ + -I retiolum-hosts="$retiolum_hosts" \ + -I secrets="$secrets_nix" \ + -A config."$attr" \ + '<nixos>' \ + --eval \ + --json \ + | jq -r . |