flake: rename check.host-configs -> check.hostConfigs

This commit is contained in:
2023-11-30 01:40:50 +00:00
parent e235014bde
commit 455127219d

View File

@@ -405,12 +405,12 @@
program = builtins.toString (pkgs.writeShellScript "check-all" '' program = builtins.toString (pkgs.writeShellScript "check-all" ''
nix run '.#check.nur' nix run '.#check.nur'
RC0=$? RC0=$?
nix run '.#check.host-configs' nix run '.#check.hostConfigs'
RC1=$? RC1=$?
nix run '.#check.rescue' nix run '.#check.rescue'
RC2=$? RC2=$?
echo "nur: $RC0" echo "nur: $RC0"
echo "host-configs: $RC1" echo "hostConfigs: $RC1"
echo "rescue: $RC2" echo "rescue: $RC2"
exit $(($RC0 | $RC1 | $RC2)) exit $(($RC0 | $RC1 | $RC2))
''); '');
@@ -433,7 +433,7 @@
''); '');
}; };
check.host-configs = { check.hostConfigs = {
type = "app"; type = "app";
program = let program = let
checkHost = host: let checkHost = host: let