mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
13 lines
285 B
Nix
13 lines
285 B
Nix
{ name, config, meta, pkgs, lib, ... }: with lib;
|
|
{
|
|
options = {
|
|
} // genAttrs [ "esphome" "api" "platform" "wifi" "i2c" "logger" "ota" "sensor" "secrets" ] (key:
|
|
mkOption {
|
|
type = types.unspecified;
|
|
default = {};
|
|
}
|
|
);
|
|
imports = with meta; [
|
|
esphome.base
|
|
];
|
|
}
|