MyNixOS website logo
option

services.github-runners.<name>.group

Group under which to run the service.

The effect of this option depends on the value of the user option:

  • group == null and user == null: The service runs with a dynamically allocated user and group.
  • group == null and user != null: The service runs as the given user and its default group.
  • group != null and user == null: This configuration is invalid. In this case, the service would use the given group but run as root implicitly. If this is really what you want, set user = "root" explicitly.