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

16 lines
187 B
Nix

{ depot, lib, ... }:
{
imports = [
./catalog
];
options.cluster = lib.mkOption {
type = lib.types.raw;
};
config.cluster = import ./. {
inherit depot lib;
};
}