snowflake/hosts/sakura/services/hedgedoc.nix
2023-10-03 14:24:26 -04:00

15 lines
339 B
Nix

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