-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: export namespaced lib as normal overlay
todo: a flollowup commit could change caller sites within this repo to use `pkgs.devos.lib` / `nixos.devos.lib`, as well.
- Loading branch information
David Arnold
committed
Mar 1, 2021
1 parent
d20877c
commit 601a071
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
final: prev: { } | ||
final: prev: { | ||
devos = { | ||
lib = import ../lib { pkgs = prev; }; | ||
} | ||
} |