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

NixOS module

You can use the nixos module by adding the flake input

{
  araneala = {
    url = "git+https://git.alpaga.dev/tools/araneala";
    inputs.nixpkgs.follows = "nixpkgs";
  };
}

and enable it using services.araneala.enable.

{ inputs, ... }:
{
  imports = [ inputs.araneala.nixosModules.araneala ];
  services.araneala = {
    enable = true;
  };
}

It runs as a user services and will only list services run as your user.