22 lines
390 B
Nix
22 lines
390 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.pub-solar.home-assistant;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
services.home-assistant = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
extraComponents =
|
|
cfg.extraComponents
|
|
++ lib.optionals cfg.mqtt.enable ["mqtt"];
|
|
extraPackages = cfg.extraPackages;
|
|
config = cfg.config;
|
|
};
|
|
};
|
|
}
|