2025-11-07 15:16:45 +03:00
|
|
|
{
|
2025-11-07 15:36:59 +03:00
|
|
|
description = "WriteFreely module";
|
2025-11-07 15:16:45 +03:00
|
|
|
|
|
|
|
|
outputs = { ... }:
|
|
|
|
|
{
|
|
|
|
|
nixosModules.default = import ./module.nix;
|
|
|
|
|
configPathsNeeded = builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
|
|
|
meta =
|
|
|
|
|
{ lib, ... }:
|
|
|
|
|
{
|
|
|
|
|
spModuleSchemaVersion = 1;
|
|
|
|
|
id = "writefreely";
|
|
|
|
|
name = "WriteFreely";
|
|
|
|
|
description = "An open source platform for building a writing space on the web.";
|
|
|
|
|
svgIcon = builtins.readFile ./icon.svg;
|
|
|
|
|
isMovable = true;
|
|
|
|
|
isRequired = false;
|
|
|
|
|
backupDescription = "Your articles and attachments.";
|
|
|
|
|
systemdServices = [
|
|
|
|
|
"writefreely.service"
|
|
|
|
|
];
|
|
|
|
|
folders = [
|
|
|
|
|
"/var/lib/writefreely"
|
|
|
|
|
];
|
|
|
|
|
license = [
|
|
|
|
|
lib.licenses.agpl3Only
|
|
|
|
|
];
|
|
|
|
|
homepage = "https://writefreely.org";
|
|
|
|
|
sourcePage = "https://github.com/writefreely/writefreely";
|
2025-11-07 16:04:19 +03:00
|
|
|
supportLevel = "experimental";
|
2025-11-07 15:16:45 +03:00
|
|
|
sso = {
|
|
|
|
|
userGroup = "sp.writefreely.users";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|