Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created April 8, 2020 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthew-piziak/70e9616cdbfb802703e15d2fb8dfbbfa to your computer and use it in GitHub Desktop.
Save matthew-piziak/70e9616cdbfb802703e15d2fb8dfbbfa to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }: {
nixpkgs = {
config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import (fetchTarball
"https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz") {
config = config.nixpkgs.config;
};
nur = import (fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment