nixos/preload: init
[NixPkgs.git] / nixos / lib / testing / name.nix
blob0af593169eeca58f929724cc6c66167bb828a44a
1 { lib, ... }:
2 let
3   inherit (lib) mkOption types mdDoc;
4 in
6   options.name = mkOption {
7     description = mdDoc ''
8       The name of the test.
10       This is used in the derivation names of the [{option}`driver`](#test-opt-driver) and [{option}`test`](#test-opt-test) runner.
11     '';
12     type = types.str;
13   };