hass unstable

This commit is contained in:
mjallen18
2026-01-06 14:10:11 -06:00
parent c8f41cf7d8
commit 98c627531c
2 changed files with 17 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
lib,
pkgs,
namespace,
inputs,
...
}:
with lib;
@@ -10,7 +11,16 @@ let
cfg = config.${namespace}.services.home-assistant;
in
{
disabledModules = [
"services/home-automation/home-assistant.nix"
];
imports = [
"${inputs.nixpkgs-unstable}/nixos/modules/services/home-automation/home-assistant.nix"
];
config = mkIf cfg.enable {
services.home-assistant = {
enable = true;
openFirewall = true;
@@ -76,9 +86,9 @@ in
"fully_kiosk"
"generic"
"generic_thermostat"
"geo_json_events"
"geo_location"
"geo_rss_events"
# "geo_json_events"
# "geo_location"
# "geo_rss_events"
"github"
"gitlab_ci"
"glances"

View File

@@ -1,6 +1,6 @@
{ ... }:
{ inputs, ... }:
final: _prev: {
home-assistant = final.unstable.home-assistant;
home-assistant-custom-components = final.unstable.home-assistant-custom-components;
python3Packages = final.unstable.python3Packages;
inherit (inputs.nixpkgs-unstable.home-assistant);
# home-assistant = final.unstable.home-assistant;
# home-assistant-custom-components = final.unstable.home-assistant-custom-components;
}