mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 02:36:54 +00:00
11 lines
174 B
Nix
11 lines
174 B
Nix
|
{ realPkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.overlays = [
|
||
|
(_: super: {
|
||
|
buildPackages =
|
||
|
super.buildPackages.extend (_: _: { inherit (realPkgs) libxslt; });
|
||
|
})
|
||
|
];
|
||
|
}
|