Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

notifications.nix
with import ./config.nix;
{
  canbesubstituted =
    mkDerivation {
      name = "can-be-substituted";
      builder = ./empty-dir-builder.sh;
    };
    
  unsubstitutable =
    mkDerivation {
      name = "unsubstitutable";
      builder = ./empty-dir-builder.sh;
    };
}