{
  config,
  lib,
  pkgs,
  ...
}:
lib.extend (
  final: _: {
    rp = import ./. {
      inherit config pkgs;
      lib = final;
    };
  }
)