Remove container names from secrets

This commit is contained in:
SebastianStork 2024-09-18 21:17:41 +02:00
parent 50d87e37a4
commit dd01651115
7 changed files with 24 additions and 23 deletions

View file

@ -1,6 +1,6 @@
{ config, ... }:
{
sops.secrets."nextcloud/gmail-password" = { };
sops.secrets."gmail-password" = { };
services.nextcloud.settings = {
mail_smtpmode = "sendmail";
@ -16,7 +16,7 @@
port = "587";
user = "nextcloud.stork";
from = "nextcloud.stork@gmail.com";
passwordeval = "cat ${config.sops.secrets."nextcloud/gmail-password".path}";
passwordeval = "cat ${config.sops.secrets."gmail-password".path}";
};
};
}