Add sops-secrets, configure oauth

This commit is contained in:
2023-04-26 12:07:36 +02:00
parent 34b77b3ed0
commit 57cd31d4a9
4 changed files with 71 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
services.hedgedoc = {
enable = true;
settings = {
port = 3031;
allowFreeURL = true;
};
config = {
domain = "md.feal.no";
db = {
dialect = "mysql";
host = "mysql.home.feal.no";
port = 3306;
database = "hedgedoc";
username = "hedgedoc";
password = "DummyPasswordPlzSops";
};
};
};
}