depot/cluster/part.nix
2023-09-03 01:11:49 +02:00

12 lines
153 B
Nix

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