Skip to content

Instantly share code, notes, and snippets.

@infinisil
Last active December 27, 2017 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinisil/e35a822a13444d718b7df31ad2ae5e3f to your computer and use it in GitHub Desktop.
Save infinisil/e35a822a13444d718b7df31ad2ae5e3f to your computer and use it in GitHub Desktop.
{ config, pkgs, lib, ... }:
with lib;
{
options.test = mkOption {
type = types.listOf types.str;
default = [];
};
config = mkMerge (map (s: {}) config.test);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment