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

set sops path directly

This commit is contained in:
Stefan Ellmauthaler 2022-06-13 22:31:36 +02:00 committed by GitHub
parent 9eb97a6b80
commit c2fd218a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,9 +14,9 @@ with lib;{
config = {
dbtype = "mysql";
dbuser = "cloudstore_user";
dbpassFile = "/run/secrets/cloudstore_user";
dbpassFile = sops.secrets.cloudstore_user.path;
adminuser = "storemin";
adminpassFile = "/run/secrets/storemin";
adminpassFile = sops.secrets.storemin.path;
};
};