We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f46271 commit 1dee6caCopy full SHA for 1dee6ca
default.nix
@@ -1,7 +1,8 @@
1
{ nixpkgs ? import ./nix/nixpkgs.nix
2
, system ? builtins.currentSystem
3
+, overlays ? [ ]
4
}:
5
import nixpkgs {
6
inherit system;
- overlays = [ (import ./overlay.nix) ];
7
+ overlays = [ (import ./overlay.nix) ] ++ overlays;
8
}
mkDevShell/options.nix
@@ -227,7 +227,8 @@ in
227
];
228
229
packages =
230
- builtins.filter (x: x != null)
+ builtins.filter
231
+ (x: x != null)
232
(map (x: x.package) config.commands);
233
};
234
0 commit comments