depot/catalog/part.nix

11 lines
199 B
Nix
Raw Permalink Normal View History

2024-07-05 23:48:39 +03:00
{ lib, ... }:
{
perSystem = {
options.catalog = lib.mkOption {
type = with lib.types; lazyAttrsOf (lazyAttrsOf (lazyAttrsOf (submodule ./target.nix)));
default = {};
};
};
}