4 patchedPkgs = pkgs.extend (
8 sorry_dave = "sorry dave";
15 name = "demo lib overlay";
21 environment.etc."got-lib-overlay".text = lib.sorry_dave;
25 # We don't need to run an actual test. Instead we build the `machine` configuration
26 # and call it a day, because that already proves that `lib` is wired up correctly.
27 # See the attrset returned at the bottom of this file.
31 inherit (patchedPkgs.testers) nixosTest runNixOSTest;
32 evaluationNixosTest = nixosTest testBody;
33 evaluationRunNixOSTest = runNixOSTest testBody;
36 nixosTest = evaluationNixosTest.driver.nodes.machine.system.build.toplevel;
37 runNixOSTest = evaluationRunNixOSTest.driver.nodes.machine.system.build.toplevel;