depot/cluster/lib/inject-nixos-config.nix

11 lines
185 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ config, lib, ... }:
2022-06-23 21:13:28 +03:00
with lib;
{
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
};
}