modules/comin: init

This commit is contained in:
xinyangli 2024-12-21 20:51:56 +08:00
parent 872849c875
commit ade0694d14
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
2 changed files with 33 additions and 1 deletions

View file

@ -36,7 +36,7 @@ jobs:
failed_hosts=""
for host in $hosts; do
echo "Eval derivation for $host"
if ! nix show-derivation -L ".#nixosConfigurations.$host.config.system.build.toplevel" > "eval/$host.json"; then
if ! nix derivation show ".#nixosConfigurations.$host.config.system.build.toplevel" > "eval/$host.json"; then
echo "❌ Failed to evaluate $host"
failed_hosts+="$host "
rm "eval/$host.json"