diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-02 20:20:19 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-02 20:20:19 +0200 |
| commit | 1f53bc3cd775e14509aad4079ef85f94da3ae244 (patch) | |
| tree | 72d07afa3af365eadd033e561a3868c1fb184e21 /npins | |
| parent | modules/boot: Use ISO directly as root (diff) | |
| download | nixos-config-1f53bc3cd775e14509aad4079ef85f94da3ae244.zip | |
pkgs/*/flake.nix: Actually instantiate `nixpkgs` instead of just loading
Diffstat (limited to 'npins')
| -rw-r--r-- | npins/full.nix | 6 |
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; } |
