mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
10 lines
110 B
Nix
10 lines
110 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
value = lib.mkOption {
|
||
|
type = lib.types.ints.unsigned;
|
||
|
};
|
||
|
};
|
||
|
}
|