ma ham: add tile

This commit is contained in:
makefu 2021-12-04 17:34:25 +01:00
parent 14f05eb886
commit 33d13bff84
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,4 @@
{
username = "lol";
password = "wut";
}

View File

@ -23,6 +23,7 @@ in {
# ./multi/fliegen-couter.nix
./device_tracker/openwrt.nix
./device_tracker/tile.nix
./sensor/outside.nix

View File

@ -0,0 +1,10 @@
{
services.home-assistant.config.device_tracker =
[
{ inherit (import <secrets/hass/tile.nix>) username password;
platform = "tile";
show_inactive = true;
}
];
}