mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
11 lines
172 B
Nix
11 lines
172 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
value = lib.mkOption {
|
|
default = 42;
|
|
type = lib.types.coercedTo lib.types.int builtins.toString lib.types.str;
|
|
};
|
|
};
|
|
}
|