1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 19:11:08 +01:00
Files
niveum/configs/traadfri.nix

19 lines
382 B
Nix
Raw Normal View History

2019-06-10 17:05:36 +02:00
{ pkgs, lib, ... }:
{
2019-10-26 13:43:30 +02:00
imports = [ <niveum/modules/traadfri.nix> ];
2019-06-10 17:05:36 +02:00
niveum.traadfri = {
enable = true;
user = "kmein";
host = "192.168.178.28";
key = lib.strings.fileContents <shared-secrets/traadfri.key>;
2019-06-10 17:05:36 +02:00
rooms = {
2020-01-22 16:39:49 +01:00
bedroom = 131082;
corridor = 131080;
kitchen = 131081;
living-room = 131079;
2019-06-10 17:05:36 +02:00
};
2020-01-22 16:39:49 +01:00
bulbs.bedside = 65537;
2019-06-10 17:05:36 +02:00
};
}