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

This commit is contained in:
Colin 2023-11-30 01:40:50 +00:00
parent e235014bde
commit 455127219d
1 changed files with 3 additions and 3 deletions

View File

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