summaryrefslogtreecommitdiffstats
path: root/2configs/ham/sensor
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-03-09 22:14:51 +0100
committermakefu <github@syntax-fehler.de>2021-03-09 22:14:51 +0100
commitee74b8a9ae77587ed94f9c63a28cb495badd397b (patch)
tree47a19af376807d407a2b1db291c6c1fb50e85fa4 /2configs/ham/sensor
parent2426a8ed2a6e60d728247f1063002911e721879e (diff)
ma ham -> ma home/ham
Diffstat (limited to '2configs/ham/sensor')
-rw-r--r--2configs/ham/sensor/outside.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/2configs/ham/sensor/outside.nix b/2configs/ham/sensor/outside.nix
deleted file mode 100644
index 332746be8..000000000
--- a/2configs/ham/sensor/outside.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{lib,...}:
-
-{
- services.home-assistant.config.sensor =
- [
- { platform = "darksky";
- api_key = lib.removeSuffix "\n"
- (builtins.readFile <secrets/hass/darksky.apikey>);
- language = "de";
- monitored_conditions = [
- "summary" "icon"
- "nearest_storm_distance" "precip_probability"
- "precip_intensity"
- "temperature" # "temperature_high" "temperature_low"
- "apparent_temperature"
- "hourly_summary" # next 24 hours text
- "humidity"
- "pressure"
- "uv_index"
- ];
- units = "si" ;
- scan_interval = "00:30:00";
- }
- ];
-}