Skip to content

Instantly share code, notes, and snippets.

@Slabity
Last active June 24, 2017 03:24
Show Gist options
  • Save Slabity/baf313ca83442192452c03bf4a816ab7 to your computer and use it in GitHub Desktop.
Save Slabity/baf313ca83442192452c03bf4a816ab7 to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
# Custom packages
let
mozillaPkgs = (import <nixpkgs>{config={};}).fetchFromGitHub {
owner = "mozilla";
repo = "nixpkgs-mozilla";
rev = "c256d490d39201ad63757d6925a92d18639c38ee";
sha256 = "04kwwgdx10911s6186dypcwgy95mcdg75i6wj8xdzyhbhahi974p";
fetchSubmodules = true;
};
mozillaOverlay = pkgs.callPackage mozillaPkgs {};
#rustOverlay = pkgs.callPackage "#{mozillaPkgs}/rust-overlay.nix";
in
{
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
mozillaOverlay
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment