nixpkgs/nixos/modules/services/web-apps/lemmy.md
Janne Heß fcc95ff817 treewide: Fix all Nix ASTs in all markdown files
This allows for correct highlighting and maybe future automatic
formatting. The AST was verified to work with nixfmt only.
2024-03-28 09:28:12 +01:00

923 B

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;
    };
    caddy.enable = true;
  };
}

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