aboutsummaryrefslogtreecommitdiffstats
path: root/npins
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-02 20:20:19 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-02 20:20:19 +0200
commit1f53bc3cd775e14509aad4079ef85f94da3ae244 (patch)
tree72d07afa3af365eadd033e561a3868c1fb184e21 /npins
parentmodules/boot: Use ISO directly as root (diff)
downloadnixos-config-1f53bc3cd775e14509aad4079ef85f94da3ae244.zip
pkgs/*/flake.nix: Actually instantiate `nixpkgs` instead of just loading
Diffstat (limited to 'npins')
-rw-r--r--npins/full.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/npins/full.nix b/npins/full.nix
index 547b32cf..0fb56679 100644
--- a/npins/full.nix
+++ b/npins/full.nix
@@ -1,10 +1,8 @@
_: let
sources = import ../unflake.nix;
- load = input: sources."${input}";
- loadFlake = load;
+ loadFlake = input: sources."${input}";
# loadFlake = flakeInput: (import sources.flake-compat {src = sources."${flakeInput}";}).outputs;
- # load = input: import sources."${input}" {};
in {
- inherit sources load loadFlake;
+ inherit sources loadFlake;
}