Add myintercom doorbell

This commit is contained in:
Jakob Lechner 2023-11-22 14:49:54 +00:00
parent 4aa948f8d4
commit aba0d00afd
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
19 changed files with 764 additions and 2 deletions

View file

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
sops.secrets.myintercom-doorbell-password = {
sopsFile = ../secrets.yaml;
owner = "asterisk";
};
services.myintercom-doorbell = {
enable = true;
host = "192.168.0.74";
username = "btxpvt0002";
passwordFile = config.sops.secrets.myintercom-doorbell-password.path;
audiosocket = {
address = "127.0.0.1";
port = 9092;
uuid = "4960ab41-dbef-4773-a25e-90536d97345e";
};
callerId = "Sprechanlage";
};
}