depot/cluster/part.nix

12 lines
153 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, lib, ... }:
{
options.cluster = lib.mkOption {
type = lib.types.raw;
};
config.cluster = import ./. {
inherit depot lib;
};
}