Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

forum (aerialis)

This container hosts the Discourse forum for the Garuda Linux community, providing discussion and support.

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";
}