repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
declare-set.nix
blob
853418531a8120301fefd08c667e7dad37b8466b
1
{ lib, ... }:
2
3
{
4
options.set = lib.mkOption {
5
default = { };
6
example = { a = 1; };
7
type = lib.types.attrsOf lib.types.int;
8
description = ''
9
Some descriptive text
10
'';
11
};
12
}