about summary refs log tree commit diff stats
path: root/npins/full.nix
diff options
context:
space:
mode:
Diffstat (limited to 'npins/full.nix')
-rw-r--r--npins/full.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/npins/full.nix b/npins/full.nix
index 71540c0f..547b32cf 100644
--- a/npins/full.nix
+++ b/npins/full.nix
@@ -1,8 +1,10 @@
 _: let
-  sources = import ./default.nix {};
-in {
-  inherit sources;
+  sources = import ../unflake.nix;
+  load = input: sources."${input}";
+  loadFlake = load;
 
-  loadFlake = flakeInput: (import sources.flake-compat {src = sources."${flakeInput}";}).outputs;
-  load = input: import sources."${input}" {};
+  # loadFlake = flakeInput: (import sources.flake-compat {src = sources."${flakeInput}";}).outputs;
+  # load = input: import sources."${input}" {};
+in {
+  inherit sources load loadFlake;
 }