fix: move hidden entities
This commit is contained in:
parent
22d1abe5ba
commit
fe7c353015
1 changed files with 5 additions and 7 deletions
|
|
@ -12,12 +12,7 @@ let
|
|||
"backup"
|
||||
];
|
||||
|
||||
ha-config = lib.recursiveUpdate config.services.home-assistant.config let
|
||||
hiddenEntities = [
|
||||
"sensor.last_boot"
|
||||
"sensor.date"
|
||||
];
|
||||
in {
|
||||
ha-config = lib.recursiveUpdate config.services.home-assistant.config {
|
||||
recorder = {
|
||||
db_url = "mysql://hass@localhost/hass?unix_socket=/var/run/mysqld/mysqld.sock";
|
||||
};
|
||||
|
|
@ -51,7 +46,10 @@ let
|
|||
};
|
||||
api = { };
|
||||
history.exclude = {
|
||||
entities = hiddenEntities;
|
||||
entities = [
|
||||
"sensor.last_boot"
|
||||
"sensor.date"
|
||||
];
|
||||
domains = [
|
||||
"automation"
|
||||
"updater"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue