Skip to content

Commit

Permalink
fix: nix overlays
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenivaya authored and yshui committed Oct 29, 2024
1 parent d07e2e0 commit d62fd41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d62fd41

Please sign in to comment.