fix(forgejo): Use common rules for the secret name

This commit is contained in:
Tom Hubrecht 2023-09-13 10:00:50 +02:00
parent 1e3b88d3c2
commit 475638baa8
3 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ in
database = {
type = "postgres";
user = "git";
passwordFile = config.age.secrets."forgejo_database-password-file".path;
passwordFile = config.age.secrets."forgejo-database_password_file".path;
};
settings = {

View file

@ -4,5 +4,5 @@ let
in
lib.setDefault { inherit publicKeys; } [
"forgejo_database-password-file"
"forgejo-database_password_file"
]