Created
March 27, 2019 11:27
-
-
Save clefru/4fe29e5b880534b77f1775a859e25808 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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