mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-07 01:07:00 +00:00
12 lines
243 B
Nix
12 lines
243 B
Nix
|
{ realPkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.overlays = [
|
||
|
(_: super: {
|
||
|
inherit (realPkgs) remarshal;
|
||
|
python3Packages = super.python3Packages.overrideScope
|
||
|
(self: super: { inherit (realPkgs.python3Packages) pyyaml; });
|
||
|
})
|
||
|
];
|
||
|
}
|