mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
14 lines
349 B
Nix
14 lines
349 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.test.enableBig = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = true;
|
||
|
description = ''
|
||
|
Whether to enable <quote>big</quote> tests. These are tests that require
|
||
|
more resources than typical tests. For example, tests that depend on large
|
||
|
packages or tests that take long to run.
|
||
|
'';
|
||
|
};
|
||
|
}
|