Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

broken-constituent.nix
with import ./config.nix;
{
  broken = mkDerivation {
    name = "broken";
    _hydraAggregate = true;
    constituents = [
      "does-not-exist"
      "does-not-evaluate"
    ];
    builder = ./fail.sh;
  };

  # does-not-exist doesn't exist.

  does-not-evaluate = assert false; {};
}