fixup
This commit is contained in:
parent
e60552bf09
commit
b0c47b096f
2 changed files with 16 additions and 0 deletions
16
container/matrix/config.nix
Normal file
16
container/matrix/config.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ secret, ... }:
|
||||
|
||||
{
|
||||
# Synapse
|
||||
|
||||
systemd.tmpfiles.rules = [
|
||||
"d /etc/container-matrix/synapse 0755 0 0"
|
||||
];
|
||||
|
||||
environment.etc."container-matrix/synapse/homeserver.yaml" = {
|
||||
source = ../../secret/container/matrix/config/homeserver.yaml;
|
||||
mode = "0640";
|
||||
uid = 0;
|
||||
gid = 0;
|
||||
};
|
||||
}
|
Binary file not shown.
Loading…
Reference in a new issue