mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-02-02 11:15:08 +01:00
13 lines
192 B
Nix
13 lines
192 B
Nix
|
|
{lib, ...}:
|
||
|
|
with lib; {
|
||
|
|
options = {
|
||
|
|
example = mkOption {
|
||
|
|
type = types.str;
|
||
|
|
default = "Hello world!";
|
||
|
|
description = ''
|
||
|
|
Some description.
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|