summary refs log tree commit diff
path: root/nixos/lib/testing/call-test.nix
blob: e3716bf163aa3bcad9f3a9f8f84a52927209a939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, ... }:
let
  inherit (lib) mkOption types;
in
{
  options = {
    callTest = mkOption {
      internal = true;
      type = types.functionTo types.raw;
    };
    result = mkOption {
      internal = true;
      default = config.test;
    };
  };
}