nix/option/RemoteBuild.nix

8 lines
176 B
Nix
Raw Normal View History

{ lib, ... }:
2024-11-16 04:43:59 +03:00
{
options.module.builder = {
server.enable = lib.mkEnableOption "the builder server.";
client.enable = lib.mkEnableOption "the builder client.";
};
2024-11-16 04:43:59 +03:00
}