diff --git a/hosts/nucnix/secrets/generated/iotWlan.age b/hosts/nucnix/secrets/generated/iotWlan.age new file mode 100644 index 0000000..29a5e60 Binary files /dev/null and b/hosts/nucnix/secrets/generated/iotWlan.age differ diff --git a/pkgs/default.nix b/pkgs/default.nix index 53b7987..d864cad 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -9,7 +9,6 @@ _inputs: [ mongodb-bin = prev.callPackage ./mongodb-bin.nix { }; disneyplus = prev.callPackage ./disney.nix { }; awakened-poe-trade = prev.callPackage ./awakened-poe-trade.nix { }; - havartastorage = prev.callPackage ./havartastorage.nix { }; neovim-clean = prev.neovim-unwrapped.overrideAttrs ( _neovimFinal: neovimPrev: { nativeBuildInputs = (neovimPrev.nativeBuildInputs or [ ]) ++ [ prev.makeWrapper ]; @@ -22,7 +21,6 @@ _inputs: [ ); pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ (_pythonFinal: _pythonPrev: { - vartastorage = prev.callPackage ./pyvartastorage.nix { }; }) ]; diff --git a/pkgs/havartastorage.nix b/pkgs/havartastorage.nix deleted file mode 100644 index 5900117..0000000 --- a/pkgs/havartastorage.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - lib, - fetchFromGitHub, - buildHomeAssistantComponent, - python3Packages, -}: - -buildHomeAssistantComponent rec { - owner = "Vip0r"; - domain = "varta_storage"; - version = "2025-1-9-unstable"; - - src = fetchFromGitHub { - inherit owner; - repo = "varta_storage"; - rev = "592cfd8692b24b131cadaa8c6280660fdc262886"; - hash = "sha256-u5VneR7s3V+NjoTnDYPAO2aJeqpDQwPu5Eko5CZQXTw="; - }; - - dependencies = [ - python3Packages.vartastorage - ]; - - meta = with lib; { - description = "Send notifications with ntfy.sh and selfhosted ntfy-servers"; - homepage = "https://github.com/hbrennhaeuser/homeassistant_integration_ntfy"; - maintainers = with maintainers; [ koral ]; - license = licenses.gpl3; - }; -} diff --git a/pkgs/pyvartastorage.nix b/pkgs/pyvartastorage.nix deleted file mode 100644 index ec5aff2..0000000 --- a/pkgs/pyvartastorage.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ - lib, - python3Packages, - fetchFromGitHub, -}: - -python3Packages.buildPythonPackage rec { - pname = "vartastorage"; - version = "2025.1.9"; - - disabled = python3Packages.pythonOlder "3.12"; - - src = fetchFromGitHub { - owner = "Vip0r"; - repo = "vartastorage"; - rev = "5e24b25dbafeabceefd513001f3b8b6a598463a1"; - hash = "sha256-8eZOTQUbv7ing05aIYYJcP3zfLc91plC7QNqM7a3ZZQ="; - }; - - __darwinAllowLocalNetworking = true; - - build-system = [ ]; - - dependencies = [ - ]; - - nativeCheckInputs = [ - ]; - - meta = with lib; { - description = "Python module to interact with HomeMatic devices"; - homepage = "https://github.com/SukramJ/hahomematic"; - changelog = "https://github.com/SukramJ/hahomematic/blob/${src.tag}/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ - dotlambda - fab - ]; - }; -}