diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 3904ced8c728..771128a8a9f2 100644 --- a/default.nix +++ b/default.nix @@ -15,6 +15,6 @@ let nixpkgsVersion = "nixos-19.03"; nixpkgs = "https://github.com/NixOS/nixpkgs-channels/archive/${nixpkgsVersion}.tar.gz"; -in import (builtins.fetchTarball nixpkgs) { +in { ... } @ args: import (builtins.fetchTarball nixpkgs) (args // { overlays = [ localPkgs ]; -} +}) |