Add impure secrets

This commit is contained in:
Charlotte 🦝 Delenk 2022-01-17 11:27:07 +01:00
parent e94fe95e23
commit 6f032bae9e
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
impure-secrets.nix

View file

@ -1,4 +1,7 @@
{ config, ... }: {
imports = [
../../impure-secrets.nix
];
services.gitea = {
enable = true;
appName = "Lotte's Git";
@ -20,7 +23,7 @@
storage = {
STORAGE_TYPE = "minio";
MINIO_ENDPOINT = "minio.int.chir.rs:443";
# minio credentials are exported in the environment
MINIO_ACCESS_KEY_ID = "gitea";
MINIO_BUCKET = "gitea";
MINIO_USE_SSL = "true";
};