refactor(Home-Assistant): module naming

This commit is contained in:
2026-01-08 16:24:28 +01:00
parent b300f39c03
commit 9974bd49ac
2 changed files with 4 additions and 4 deletions
@@ -6,16 +6,16 @@
...
}:
let
cfg = config.my.profiles.homeassistant;
cfg = config.my.profiles.home-assistant;
in
{
options.my.profiles.homeassistant = with lib; {
options.my.profiles.home-assistant = with lib; {
enable = mkEnableOption "Home Automation";
};
config = lib.mkIf cfg.enable {
services.homeassistant = {
services.home-assistant = {
enable = true;
openFirewall = true;
};