From e2172c84109751f4c457cd0914437656479c1296 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sat, 6 Feb 2021 13:27:26 -0700 Subject: [PATCH] shell: workaround https://github.com/NixOS/nix/issues/4529 --- default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index bd9177a7..0dc0fc04 100644 --- a/default.nix +++ b/default.nix @@ -3,4 +3,6 @@ let default = (import ./compat).defaultNix; in -builtins.mapAttrs (_: v: recurseIntoAttrs v) default.packages +builtins.mapAttrs (_: v: recurseIntoAttrs v) default.packages // { + shell = import ./shell.nix; +}