10 lines
157 B
Nix
10 lines
157 B
Nix
nixpkgsPath: { pkgs, oldPkgs }:
|
|
let
|
|
packages = pkgs.lib.makeScope pkgs.newScope (self: rec {
|
|
firefox = oldPkgs.firefox-esr;
|
|
});
|
|
in
|
|
{
|
|
inherit packages;
|
|
}
|