about summary refs log tree commit diff
path: root/lib/tests/modules/shorthand-meta.nix
blob: 8c9619e18a2ab8dd94f93ef6926f129bde8529a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, ... }:
let
  inherit (lib) types mkOption;
in
{
  imports = [
    ({ config, ... }: {
      options = {
        meta.foo = mkOption {
          type = types.listOf types.str;
        };
        result = mkOption { default = lib.concatStringsSep " " config.meta.foo; };
      };
    })
    {
      meta.foo = [ "one" "two" ];
    }
  ];
}