versions: bump to 20.09 and improve NIX_PATH assembly
The NIX_PATH assembly now walks over all keys in the given channel repositories and assembles a NIX_PATH entry from it. Previously it made assumptions about a set of hardcoded keys being available, which wasn't ideal as it didn't allow device-entries.
This commit is contained in:
parent
eaad3a11b4
commit
89c9f9e606
15 changed files with 221 additions and 139 deletions
|
@ -1,20 +1,30 @@
|
|||
let
|
||||
nixpkgs = {
|
||||
url = "https://github.com/NixOS/nixpkgs/";
|
||||
ref = "nixos-20.09";
|
||||
rev = "51aaa3fa1b69559456f9bd4968bd5b179a784f67";
|
||||
};
|
||||
in
|
||||
|
||||
{
|
||||
channelsNixosStable = {
|
||||
ref = "nixos-20.03";
|
||||
rev = "70717a337f7ae4e486ba71a500367cad697e5f09";
|
||||
inherit nixpkgs;
|
||||
nixos = nixpkgs // {
|
||||
suffix = "/nixos";
|
||||
};
|
||||
channelsNixosUnstable = {
|
||||
"channels-nixos-stable" = nixpkgs;
|
||||
"channels-nixos-unstable" = {
|
||||
url = "https://github.com/NixOS/nixpkgs/";
|
||||
ref = "nixos-unstable";
|
||||
rev = "029a5de08390bb03c3f44230b064fd1850c6658a";
|
||||
rev = "24c9b05ac53e422f1af81a156f1fd58499eb27fb";
|
||||
};
|
||||
nixpkgsMaster = {
|
||||
"nixpkgs-master" = {
|
||||
url = "https://github.com/NixOS/nixpkgs/";
|
||||
ref = "master";
|
||||
rev = "7a4ee350b007bcb4c689123ad21a8468f91a19b9";
|
||||
rev = "3312e1c3ba80506c435876f016d7b3888f297c4e";
|
||||
};
|
||||
homeManagerModule = {
|
||||
url = "https://github.com/rycee/home-manager";
|
||||
ref = "release-20.03";
|
||||
rev = "96fcf3b017d813fac300ecb821b6db6b7b5d0c40";
|
||||
"home-manager-module" = {
|
||||
url = "https://github.com/nix-community/home-manager";
|
||||
ref = "release-20.09";
|
||||
rev = "7339784e07217ed0232e08d1ea33b610c94657d8";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue