Skip to content

Instantly share code, notes, and snippets.

@clefru
Created March 27, 2019 11:27
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 clefru/4fe29e5b880534b77f1775a859e25808 to your computer and use it in GitHub Desktop.
Save clefru/4fe29e5b880534b77f1775a859e25808 to your computer and use it in GitHub Desktop.
{
nixpkgs-18.09 = builtins.fetchGit {
url = "https://github.com/nixos/nixpkgs-channels";
ref = "nixos-18.09";
rev = "....";
};
nixpkgs-19.03 = builtins.fetchGit {
url = "https://github.com/nixos/nixpkgs-channels";
ref = "nixos-19.03";
rev = "....";
};
nixpkgs-unstable = builtins.fetchGit {
url = "https://github.com/nixos/nixpkgs-channels";
ref = "nixpkgs-unstable";
rev = "....";
};
nixpkgs-stable = nixpkgs-18.09
nixpkgs = nixpkgs-stable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment