mirror of
https://github.com/RGBCube/hjem
synced 2025-10-15 14:12:22 +00:00

Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6a6a6964598eb7cedb0e101cf39cd30c2e5b5f4f
12 lines
273 B
Nix
12 lines
273 B
Nix
# The first argument to this function is the test module itself
|
|
test: {
|
|
pkgs,
|
|
self,
|
|
inputs,
|
|
}:
|
|
(pkgs.testers.runNixOSTest {
|
|
node.specialArgs = {inherit self inputs;};
|
|
defaults.documentation.enable = pkgs.lib.mkDefault false;
|
|
|
|
imports = [test];
|
|
}).config.result
|