ma ham: add tile

This commit is contained in:
makefu 2021-12-04 17:34:25 +01:00
parent 34bb01a65e
commit 5460666b4c
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;
}
];
}