HermitCollective.nix/services/iceshrimp.nix

19 lines
492 B
Nix
Raw Normal View History

2024-03-07 08:33:59 +00:00
{ inputs, ... }:
2024-03-06 09:25:15 +00:00
{
2024-03-06 10:08:26 +00:00
services = {
iceshrimp = {
enable = true; # Actually enable the module
2024-03-06 12:38:10 +00:00
createDb = true;
2024-03-07 09:55:42 +00:00
configureNginx.enable = true;
2024-03-06 10:08:26 +00:00
stateDir = "/var/lib/iceshrimp";
mediaDir = "/var/lib/iceshrimp/files";
settings = {
url = "https://mastodon.hermitcollective.net";
maxNoteLength = 35124; # Length of the GPL3 + long;
maxCaptionLength = 5000; # We did it HermitCollective!! We solved accesibility!
2024-03-06 10:13:13 +00:00
};
2024-03-06 09:25:15 +00:00
};
};
}