Compare commits

..

No commits in common. "7f625ae39d42011dfae82d1efa200c2a21da9784" and "bc5efa5ebeefe9f34c5e0173154ee4a4dff29a37" have entirely different histories.

2 changed files with 2 additions and 12 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
.direnv/

View File

@ -1,12 +1,11 @@
{ pkgs, config, ... }: { pkgs, ... }:
{ {
# Enable the Home Assistant service # Enable the Home Assistant service
services.home-assistant = { services.home-assistant = {
enable = true; enable = true;
package = pkgs.unstable.home-assistant;
configWritable = true; configWritable = true;
config = null; config = null;
extraPackages = python3Packages: with pkgs.unstable.python312Packages; [ extraPackages = python3Packages: with pkgs.python3Packages; [
aiopyarr aiopyarr
zigpy-cc zigpy-cc
zigpy-znp zigpy-znp
@ -22,8 +21,6 @@
pyunifiprotect pyunifiprotect
unifi-discovery unifi-discovery
universal-silabs-flasher universal-silabs-flasher
vacuum-map-parser-base
vacuum-map-parser-roborock
python-roborock python-roborock
]; ];
customComponents = with pkgs.home-assistant-custom-components; [ customComponents = with pkgs.home-assistant-custom-components; [
@ -48,12 +45,6 @@
enable = true; enable = true;
package = pkgs.unstable.zigbee2mqtt; package = pkgs.unstable.zigbee2mqtt;
settings = { settings = {
homeassistant = {
legacy_entity_attributes = false;
legacy_triggers = false;
};
availability = true;
frontend = true;
permit_join = false; permit_join = false;
serial.port = "/dev/ttyUSB0"; serial.port = "/dev/ttyUSB0";
}; };