From bde70d0c7ba54c0ac041ec67b87ba531b51f8de2 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 16 Feb 2025 12:53:56 +0000 Subject: [PATCH] Fix dirigera override --- system/services/home-assistant/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/services/home-assistant/default.nix b/system/services/home-assistant/default.nix index 54cc58a3..d0a52392 100644 --- a/system/services/home-assistant/default.nix +++ b/system/services/home-assistant/default.nix @@ -32,7 +32,7 @@ in (with pkgs.home-assistant-custom-components; [ (dirigera_platform.override { - dirigera = (hassPython.pkgs.dirigera.overrideAttrs (final: prev: { doCheck = false; })); + dirigera = (pkgs.python312.pkgs.dirigera.overrideAttrs (final: prev: { doCheck = false; })); }) ]) ++ [ (hassPython.pkgs.callPackage ./customComponents/tapo_control.nix { }) ];