Skip to content

Commit

Permalink
lib#genPkgs: reorder overlays
Browse files Browse the repository at this point in the history
Resolves #146 by allowing external overlays to ve overriden by local
overlays.
  • Loading branch information
nrdxp committed Mar 2, 2021
1 parent 5bce44b commit 7c226c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ in
};
})
]
++ (attrValues self.overlays)
++ extern.overlays;
++ extern.overlays
++ (attrValues self.overlays);
in
{ pkgs = pkgImport nixos overlays system; }
)
Expand Down

0 comments on commit 7c226c9

Please sign in to comment.