We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e21c04 commit 2e7e364Copy full SHA for 2e7e364
default.nix
@@ -9,6 +9,8 @@
9
let
10
inherit (lib) mkOption types;
11
12
+ finalPkgs = pkgs.appendOverlays config.nixpkgs.overlays;
13
+
14
eval = (lib.evalModules {
15
modules = [
16
({ config, ... }: {
@@ -20,7 +22,6 @@ let
20
22
21
23
config = {
24
_module.args = let
- finalPkgs = pkgs.appendOverlays config.nixpkgs.overlays;
25
apks = import ./apks { pkgs = finalPkgs; };
26
robotnixlib = import ./lib lib;
27
in {
@@ -82,7 +83,8 @@ let
82
83
else lib.showWarnings eval.config.warnings eval.config;
84
85
- inherit (eval) pkgs options;
86
+ inherit (eval) options;
87
+ inherit finalPkgs;
88
inherit config;
89
90
# Things that are nice to have at the top-level, since they might get moved
0 commit comments