1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 23:50:07 +03:00
nixpkgs/nixos/lib/testing/call-test.nix

13 lines
162 B
Nix
Raw Normal View History

{ config, lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
result = mkOption {
internal = true;
default = config;
};
};
}