1
0
Fork 0
dotfiles/container/matrix/config.nix

17 lines
307 B
Nix
Raw Normal View History

2022-11-11 14:25:00 +00:00
{ secret, ... }:
{
# Synapse
systemd.tmpfiles.rules = [
2022-11-11 14:29:35 +00:00
"d /etc/container-matrix/synapse 0755 991 991"
2022-11-11 14:25:00 +00:00
];
environment.etc."container-matrix/synapse/homeserver.yaml" = {
source = ../../secret/container/matrix/config/homeserver.yaml;
mode = "0640";
2022-11-11 14:29:35 +00:00
uid = 991;
gid = 991;
2022-11-11 14:25:00 +00:00
};
}