summary refs log tree commit diff
path: root/lib/tests/modules/custom-arg-define-enable.nix
blob: f04d30dd9b9fca287ecaa8c30506b3ff52749155 (plain) (blame)
1
2
3
4
5
6
7
8
{ lib, custom, ... }:

{
  config = {
    _module.args.custom = true;
    enable = custom;
  };
}