update hass addons
This commit is contained in:
@@ -36,7 +36,7 @@ in
|
|||||||
home = "/media/nas/main/nix-app-data/ollama";
|
home = "/media/nas/main/nix-app-data/ollama";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ llamaPackage ];
|
environment.systemPackages = [ pkgs.stable.llama-cpp ];
|
||||||
|
|
||||||
services.llama-cpp = {
|
services.llama-cpp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -44,7 +44,7 @@ in
|
|||||||
host = "0.0.0.0";
|
host = "0.0.0.0";
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
model = "/media/nas/main/nix-app-data/llama-cpp/models/functionary-small-v3.2-GGUF/functionary-small-v3.2.Q4_0.gguf";
|
model = "/media/nas/main/nix-app-data/llama-cpp/models/functionary-small-v3.2-GGUF/functionary-small-v3.2.Q4_0.gguf";
|
||||||
package = llamaPackage; # pkgs.unstable.llama-cpp;
|
package = pkgs.stable.llama-cpp;
|
||||||
extraFlags = [
|
extraFlags = [
|
||||||
"--n_gpu-layers"
|
"--n_gpu-layers"
|
||||||
"500"
|
"500"
|
||||||
|
|||||||
@@ -8,13 +8,13 @@
|
|||||||
buildHomeAssistantComponent rec {
|
buildHomeAssistantComponent rec {
|
||||||
owner = "simbaja";
|
owner = "simbaja";
|
||||||
domain = "ge_home";
|
domain = "ge_home";
|
||||||
version = "v2025.5.0";
|
version = "v2025.7.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = owner;
|
owner = owner;
|
||||||
repo = "ha_gehome";
|
repo = "ha_gehome";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-NlUkM70yvBeC5s7S5BkNxIC2GztfEq8xYrQZr4pkaGU=";
|
hash = "sha256-sCOXzrbUpbRb09QDpcm1Pbr2Xxsg0q3Ecc+tAQv2pXk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
|||||||
@@ -8,13 +8,13 @@
|
|||||||
buildHomeAssistantComponent rec {
|
buildHomeAssistantComponent rec {
|
||||||
owner = "SecKatie";
|
owner = "SecKatie";
|
||||||
domain = "wyzeapi";
|
domain = "wyzeapi";
|
||||||
version = "0.1.33";
|
version = "0.1.35";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = owner;
|
owner = owner;
|
||||||
repo = "ha-wyzeapi";
|
repo = "ha-wyzeapi";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-Hl1Vmi2lhoJW3bdkrtO2mNqfLxURPwqFPjYgdrHRxYk=";
|
hash = "sha256-J9VFNImri0xF8RfND1bZl12CreKA023eHsXFNVt1YNQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
{ fetchFromGitHub, python3Packages, ... }:
|
{ fetchFromGitHub, python3Packages, ... }:
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
pname = "wyzeapy";
|
pname = "wyzeapy";
|
||||||
version = "0.5.27";
|
version = "0.5.30";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "SecKatie";
|
owner = "SecKatie";
|
||||||
repo = "wyzeapy";
|
repo = "wyzeapy";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-IfhRsVWj/bcKOtpCdmpgrz3L8iY73e+weHlOo5rfKHw=";
|
sha256 = "sha256-rEmWsCIBGNmDEecVT8O9O5/E0WVpTfA7amFI70DEmiI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with python3Packages; [ poetry-core ];
|
buildInputs = with python3Packages; [ poetry-core hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
aiodns
|
aiodns
|
||||||
|
|||||||
Reference in New Issue
Block a user