mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
17 lines
259 B
Nix
17 lines
259 B
Nix
![]() |
{ config, lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
callTest = mkOption {
|
||
|
internal = true;
|
||
|
type = types.functionTo types.raw;
|
||
|
};
|
||
|
result = mkOption {
|
||
|
internal = true;
|
||
|
default = config;
|
||
|
};
|
||
|
};
|
||
|
}
|