mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-07 18:57:19 +02:00
15 lines
214 B
Nix
15 lines
214 B
Nix
![]() |
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.set = {
|
||
|
enable = lib.mkOption {
|
||
|
default = false;
|
||
|
example = true;
|
||
|
type = lib.types.bool;
|
||
|
description = ''
|
||
|
Some descriptive text
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|