Add myintercom doorbell
This commit is contained in:
parent
4aa948f8d4
commit
aba0d00afd
19 changed files with 764 additions and 2 deletions
19
hosts/aluminium/services/doorbell.nix
Normal file
19
hosts/aluminium/services/doorbell.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue