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