17 lines
215 B
Nix
17 lines
215 B
Nix
{ depot, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./catalog
|
|
./simulacrum/checks.nix
|
|
];
|
|
|
|
options.cluster = lib.mkOption {
|
|
type = lib.types.raw;
|
|
};
|
|
|
|
config.cluster = import ./. {
|
|
inherit depot lib;
|
|
};
|
|
}
|