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.