depot/catalog/part.nix
2024-07-06 00:02:08 +02:00

11 lines
199 B
Nix

{ lib, ... }:
{
perSystem = {
options.catalog = lib.mkOption {
type = with lib.types; lazyAttrsOf (lazyAttrsOf (lazyAttrsOf (submodule ./target.nix)));
default = {};
};
};
}