snowflake/hosts/sakura/services/hedgedoc.nix
2023-06-18 17:35:39 -04:00

15 lines
343 B
Nix

_: {
services.hedgedoc = {
enable = true;
settings = {
port = 3300;
domain = "scratch.notohh.dev";
allowOrigin = ["scratch.notohh.dev"];
allowAnonymous = true;
allowFreeURL = true;
allowEmailRegister = false;
dbURL = "postgres://hedgedoc:hedgedoc@192.168.1.211:5432/hedgedoc";
};
};
}