Issue #6161 - Add tests for NixOS modules.

This commit is contained in:
Nicolas B. Pierron
2015-02-09 00:07:44 +01:00
parent d54611bde7
commit 6d15e32536
15 changed files with 192 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{ lib, ... }:
{
options = {
enable = lib.mkOption {
default = false;
example = true;
type = lib.types.bool;
description = ''
Some descriptive text
'';
};
};
}