HermitCollective.nix/services/iceshrimp.nix

17 lines
474 B
Nix

{
services = {
iceshrimp = {
enable = true; # Actually enable the module
createDb = true;
configureNginx.enable = true;
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!
};
};
};
}