depot/third_party/nixpkgs/nixos/modules/services/web-apps/lemmy.md
Default email 5e2a688410 Project import generated by Copybara.
GitOrigin-RevId: 5e2018f7b383aeca6824a30c0cd1978c9532a46a
2021-10-06 10:57:05 -03:00

1 KiB

Lemmy

Lemmy is a federated alternative to reddit in rust.

Quickstart

the minimum to start lemmy is

services.lemmy = {
  enable = true;
  settings = {
    hostname = "lemmy.union.rocks";
    database.createLocally = true;
  };
  jwtSecretPath = "/run/secrets/lemmyJwt";
  caddy.enable = true;
}

(note that you can use something like agenix to get your secret jwt to the specified path)

this will start the backend on port 8536 and the frontend on port 1234. It will expose your instance with a caddy reverse proxy to the hostname you've provided. Postgres will be initialized on that same instance automatically.

Usage

On first connection you will be asked to define an admin user.

Missing

  • Exposing with nginx is not implemented yet.
  • This has been tested using a local database with a unix socket connection. Using different database settings will likely require modifications