1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-07 01:07:00 +00:00
home-manager/tests/modules/services/fusuma/fusuma-stubs.nix

12 lines
243 B
Nix
Raw Normal View History

{ realPkgs, ... }:
{
nixpkgs.overlays = [
(_: super: {
inherit (realPkgs) remarshal;
python3Packages = super.python3Packages.overrideScope
(self: super: { inherit (realPkgs.python3Packages) pyyaml; });
})
];
}