HermitCollective.nix/services/iceshrimp.nix

17 lines
474 B
Nix
Raw Normal View History

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-06 14:22:08 +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
};
};
}