11 lines
209 B
Nix
11 lines
209 B
Nix
{ config, ... }:
|
|
{
|
|
sops.secrets = {
|
|
"seafile/redis_password" = { };
|
|
};
|
|
|
|
sops.templates."seafile-redis.env".content = ''
|
|
REDIS_PASSWORD=${config.sops.placeholder."seafile/redis_password"}
|
|
'';
|
|
}
|