nixfiles/modules/esphome/genesis.nix
2022-09-26 17:49:42 -07:00

10 lines
268 B
Nix

{ name, config, meta, pkgs, lib, ... }: with lib;
{
options = {
} // genAttrs [ "esphome" "api" "platform" "wifi" "i2c" "logger" "ota" "sensor" ] (key:
mkOption {
type = types.unspecified;
default = {};
}
);
}