Skip to content

Commit

Permalink
default.nix: Allow pure evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
infinisil committed Nov 7, 2023
1 parent 9114595 commit c5e1cd7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{ inputs ? import ./nix/sources.nix }:
{
inputs ? import ./nix/sources.nix,
system ? builtins.currentSystem,
}:
let
pkgs = import inputs.nixpkgs {
config = { };
overlays = [ (import ./overlay.nix) ];
inherit system;
};

nix-dev = pkgs.stdenv.mkDerivation {
Expand Down

0 comments on commit c5e1cd7

Please sign in to comment.