mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
20 lines
345 B
Nix
20 lines
345 B
Nix
|
{ 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" ];
|
||
|
}
|
||
|
];
|
||
|
}
|