2022-07-31 10:23:30 +00:00
|
|
|
{ secret, ... }:
|
|
|
|
|
|
|
|
{
|
2022-11-11 15:11:54 +00:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d /etc/container-webserver/weewx 0755 421 421"
|
|
|
|
"d /etc/container-webserver/weewx/html 0755 421 421"
|
|
|
|
"d /etc/container-matrix/synapse 0755 991 991"
|
2022-11-11 16:07:21 +00:00
|
|
|
"d /etc/container-matrix/telegram 0775 1337 1337"
|
2022-11-11 21:26:55 +00:00
|
|
|
"d /etc/container-matrix/signald 0775 0 0"
|
|
|
|
"d /etc/container-matrix/signal 0775 1337 1337"
|
2022-11-12 16:59:42 +00:00
|
|
|
"d /etc/container-matrix/whatsapp 0775 1337 1337"
|
2022-11-11 15:11:54 +00:00
|
|
|
];
|
|
|
|
|
2022-07-31 10:41:00 +00:00
|
|
|
# mosquitto
|
|
|
|
|
|
|
|
environment.etc."container-webserver/mosquitto/mosquitto.conf" = {
|
|
|
|
text = ''
|
|
|
|
listener 1883
|
|
|
|
password_file /mosquitto/config/users.conf
|
|
|
|
'';
|
|
|
|
|
|
|
|
mode = "0644";
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc."container-webserver/mosquitto/users.conf" = {
|
|
|
|
text = secret.container.webserver.mosquitto.users;
|
|
|
|
mode = "0644";
|
|
|
|
};
|
|
|
|
|
2022-07-31 13:10:28 +00:00
|
|
|
# weewx
|
|
|
|
|
|
|
|
environment.etc."container-webserver/weewx/weewx.conf" = {
|
|
|
|
source = ../../secret/container/webserver/config/weewx.conf;
|
|
|
|
mode = "0644";
|
|
|
|
uid = 421;
|
|
|
|
gid = 421;
|
|
|
|
};
|
2022-11-11 15:11:54 +00:00
|
|
|
|
|
|
|
# Matrix: Synapse
|
|
|
|
|
|
|
|
environment.etc."container-matrix/synapse/homeserver.yaml" = {
|
|
|
|
source = ../../secret/container/webserver/config/matrix/homeserver.yaml;
|
|
|
|
mode = "0640";
|
|
|
|
uid = 991;
|
|
|
|
gid = 991;
|
|
|
|
};
|
2022-11-11 16:07:21 +00:00
|
|
|
|
|
|
|
# Matrix: Telegram
|
|
|
|
|
|
|
|
environment.etc."container-matrix/telegram/config.yaml" = {
|
|
|
|
source = ../../secret/container/webserver/config/matrix/telegram.yaml;
|
|
|
|
mode = "0640";
|
|
|
|
uid = 1337;
|
|
|
|
gid = 1337;
|
|
|
|
};
|
2022-11-11 21:26:55 +00:00
|
|
|
|
|
|
|
# Matrix: Signal
|
|
|
|
|
|
|
|
environment.etc."container-matrix/signal/config.yaml" = {
|
|
|
|
source = ../../secret/container/webserver/config/matrix/signal.yaml;
|
|
|
|
mode = "0640";
|
|
|
|
uid = 1337;
|
|
|
|
gid = 1337;
|
|
|
|
};
|
2022-11-12 16:59:42 +00:00
|
|
|
|
|
|
|
# Matrix: WhatsApp
|
|
|
|
|
|
|
|
environment.etc."container-matrix/whatsapp/config.yaml" = {
|
|
|
|
source = ../../secret/container/webserver/config/matrix/whatsapp.yaml;
|
|
|
|
mode = "0640";
|
|
|
|
uid = 1337;
|
|
|
|
gid = 1337;
|
|
|
|
};
|
2022-07-31 10:23:30 +00:00
|
|
|
}
|