1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-04-21 18:03:02 -04:00

Merge pull request #1374 from Lenivaya/fix/nix/overlay

fix: nix overlays
This commit is contained in:
Yuxuan Shui 2024-10-29 19:52:26 +00:00 committed by GitHub
commit 7626dd9cf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,9 +18,8 @@
let
# like lib.lists.remove, but takes a list of elements to remove
removeFromList = toRemove: list: pkgs.lib.foldl (l: e: pkgs.lib.remove e l) list toRemove;
picomOverlay = final: prev: { picom = prev.callPackage ./package.nix { }; };
picomOverlay = final: prev: { picom = prev.callPackage ./package.nix { inherit git-ignore-nix; }; };
overlays = [
(final: prev: { inherit git-ignore-nix; })
picomOverlay
];
pkgs = import nixpkgs {