8 lines
124 B
Nix
8 lines
124 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.name = lib.mkOption {
|
||
|
description = "The name of the test.";
|
||
|
type = lib.types.str;
|
||
|
};
|
||
|
}
|