Skip to content

Commit 4484300

Browse files
author
David Arnold
committed
Provide means to add extra overlays to devhsell
1 parent 4859a38 commit 4484300

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{ nixpkgs ? import ./nix/nixpkgs.nix
22
, system ? builtins.currentSystem
3+
, overlays ? []
34
}:
45
import nixpkgs {
56
inherit system;
6-
overlays = [ (import ./overlay.nix) ];
7+
overlays = [ (import ./overlay.nix) ] ++ overlays;
78
}

0 commit comments

Comments
 (0)