sakura: readd hedgedoc

This commit is contained in:
notohh 2025-03-26 19:50:32 -04:00
parent 73331eeb88
commit 62b64e077d
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 16 additions and 0 deletions
hosts/sakura/services

View file

@ -11,5 +11,6 @@
./ganymede.nix
./immich-proxy.nix
./matrix.nix
./hedgedoc.nix
];
}

View file

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