Skip to content

Commit

Permalink
add config attr to params (#161)
Browse files Browse the repository at this point in the history
this unblocks usage of [rippkgs](https://github.com/cdmistman/rippkgs)
  • Loading branch information
cdmistman authored Feb 21, 2024
1 parent dd2737f commit 0a2608d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
, channelName ? "nixpkgs-23.11"
, channel ? sources.${channelName}
, system ? "x86_64-linux"
, config ? { }
}:
let
overlay = (import ./overlay.nix) {
inherit sources channelName;
};
in
import channel { inherit system; overlays = [ overlay ]; }
import channel { inherit config system; overlays = [ overlay ]; }

0 comments on commit 0a2608d

Please sign in to comment.