profilesTest/mkHosts: include host's configuration

This commit is contained in:
Pacman99 2021-04-24 00:08:49 -07:00
parent 12b41f2448
commit 832d3bd697
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ let
lib = { lib = {
lib = { inherit specialArgs; }; lib = { inherit specialArgs; };
lib.testModule = { lib.testModule = {
imports = builtins.attrValues modules; imports = [ local ] ++ builtins.attrValues modules;
}; };
}; };
in in

View File

@ -48,7 +48,7 @@ let
}; };
testScript = '' testScript = ''
machine.systemctl("is-system-running --wait") ${host.config.networking.hostName}.systemctl("is-system-running --wait")
''; '';
}; };