16 lines
444 B
Nix
16 lines
444 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./harness-base.nix ];
|
|
|
|
# Entry-point for the privileged root agent (ruth). Referenced from
|
|
# `flake.nix` (`nixosConfigurations.ruth`) and the meta-flake's
|
|
# `applied/ruth/flake.nix`. Forge subscription/participation firehose
|
|
# stays off so ruth's inbox isn't drowned in noise.
|
|
hyperhive.forge = {
|
|
keepSubscriptions = false;
|
|
skipNotifyReasons = [
|
|
"subscribed"
|
|
"participating"
|
|
];
|
|
};
|
|
}
|