snowflake/hosts/sakura/services/hedgedoc.nix

15 lines
343 B
Nix
Raw Normal View History

2023-06-13 15:17:23 -04:00
_: {
services.hedgedoc = {
enable = true;
settings = {
port = 3300;
domain = "scratch.notohh.dev";
allowOrigin = ["scratch.notohh.dev"];
allowAnonymous = true;
allowFreeURL = true;
allowEmailRegister = false;
2023-06-18 17:35:39 -04:00
dbURL = "postgres://hedgedoc:hedgedoc@192.168.1.211:5432/hedgedoc";
2023-06-13 15:17:23 -04:00
};
};
}