summary refs log tree commit diff
path: root/lib/tests/modules/functionTo/trivial.nix
blob: 0962a0cf893d320ed0f2cd81b719ff2991019c3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, config, ... }:
let
  inherit (lib) types;
in {
  options = {
    fun = lib.mkOption {
      type = types.functionTo types.str;
    };

    result = lib.mkOption {
      type = types.str;
      default = config.fun "input";
    };
  };

  config.fun = input: "input is ${input}";
}