diff options
author | Ben Sima <ben@bsima.me> | 2020-10-13 11:57:29 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-10-13 12:02:32 -0400 |
commit | 1d92f4686c4803c802dce66804eba9ebe61efc1a (patch) | |
tree | caf95700e5c587d4908138004baf4273f6bf5466 /nix/default.nix | |
parent | dbea29d0c604c69968adbf658ca19a6cc207890d (diff) |
Move nix files into Biz.Bild namespace
Diffstat (limited to 'nix/default.nix')
-rw-r--r-- | nix/default.nix | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/nix/default.nix b/nix/default.nix deleted file mode 100644 index 04f9ee4..0000000 --- a/nix/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -let - sources = import ./sources.nix; - nixpkgs = import sources.nixpkgs { - system = __currentSystem; - overlays = [ - (_: _: { inherit sources; }) - (import ./sources-overlay.nix) - (_: pkgs: pkgs.overridePinnedDeps pkgs.overrideSource) - (_: _: { niv = import sources.niv {}; }) - (import ./haskell-overlay.nix) - (_: pkgs: { wemux = pkgs.callPackage ./wemux.nix {}; }) - ]; - }; -in nixpkgs |