9 lines
98 B
Nix
9 lines
98 B
Nix
|
|
{ lib, custom, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
config = {
|
||
|
|
_module.args.custom = true;
|
||
|
|
enable = custom;
|
||
|
|
};
|
||
|
|
}
|