2023-08-31 00:55:45 +02:00
|
|
|
{ config, lib, ... }:
|
2022-06-23 20:13:28 +02:00
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2024-07-20 22:15:48 +02:00
|
|
|
options.out = mkOption {
|
|
|
|
description = "Output functions.";
|
|
|
|
type = with types; lazyAttrsOf (functionTo raw);
|
2023-08-31 00:55:45 +02:00
|
|
|
default = const [];
|
2022-06-23 20:13:28 +02:00
|
|
|
};
|
|
|
|
}
|