1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 05:26:13 -04:00
nixpkgs/lib/tests/modules/custom-arg-define-enable.nix

9 lines
98 B
Nix
Raw Normal View History

{ lib, custom, ... }:
{
config = {
_module.args.custom = true;
enable = custom;
};
}