1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix owner and group in mail-module

This commit is contained in:
Stefan Ellmauthaler 2022-08-07 13:28:16 +02:00
parent a381c4c673
commit 5992db1d28
Signed by: ellmau
GPG Key ID: C804A9C1B7AF8256

View File

@ -24,8 +24,8 @@ with lib;{
sops.secrets = { sops.secrets = {
ellmauMail = { ellmauMail = {
owner = mailserver.vmailUserName; owner = config.mailserver.vmailUserName;
group = mailserver.vmailGroupName; group = config.mailserver.vmailGroupName;
sopsFile = ../../secrets/server.yaml; sopsFile = ../../secrets/server.yaml;
}; };
}; };