forum (aerialis)
This container hosts the Discourse forum for the Garuda Linux community, providing discussion and support.
Links
Nix expression
{ sources, ... }:
{
  imports = sources.defaultModules ++ [ ../../modules ];
  # Enable Docker since we use the official Docker image in /var/discourse
  virtualisation.docker.enable = true;
  # Open required port
  networking.firewall.allowedTCPPorts = [ 80 ];
  system.stateVersion = "25.05";
}