From 775ccda5d7364078fa8014b496c01e9fd69eeb6f Mon Sep 17 00:00:00 2001 From: Cale Gibbard Date: Wed, 8 Feb 2023 13:16:43 -0500 Subject: [PATCH] More adjustments to make the nixpkgs overlays available from the top level and repl. --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 5af2852..04ddb48 100644 --- a/default.nix +++ b/default.nix @@ -22,7 +22,7 @@ } }: with obelisk; -project ./. ({ pkgs, hackGet, ... }: { +(project ./. ({ pkgs, hackGet, ... }: { android.applicationId = "systems.obsidian.obelisk.examples.minimal"; android.displayName = "Obelisk Minimal Example"; ios.bundleIdentifier = "systems.obsidian.obelisk.examples.minimal"; @@ -43,4 +43,4 @@ project ./. ({ pkgs, hackGet, ... }: { sha256 = "04glpmwp50qi29h8cb5j0w1rz0ww30nw4xgj2a3l7zh1gprhwj89"; } {}; }; -}) +}) // { inherit (obelisk) nixpkgs ; })