depot/cluster/part.nix

17 lines
215 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, lib, ... }:
{
2024-07-05 23:49:32 +03:00
imports = [
./catalog
2024-07-23 21:05:21 +03:00
./simulacrum/checks.nix
2024-07-05 23:49:32 +03:00
];
2023-08-31 01:55:45 +03:00
options.cluster = lib.mkOption {
type = lib.types.raw;
};
config.cluster = import ./. {
inherit depot lib;
};
}