mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
9 lines
166 B
Nix
9 lines
166 B
Nix
{ realPkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(_: super: {
|
|
buildPackages = super.buildPackages.extend (_: _: { inherit (realPkgs) libxslt; });
|
|
})
|
|
];
|
|
}
|