Compare commits

...

1 Commits

Author SHA1 Message Date
Robin Gloster
6c9fb36526 release 17.03-beta 2017-02-27 20:12:01 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ in
defaultChannel = mkOption {
internal = true;
type = types.str;
default = https://nixos.org/channels/nixos-unstable;
default = https://nixos.org/channels/nixos-17.03;
description = "Default NixOS channel to which the root user is subscribed.";
};

View File

@@ -9,7 +9,7 @@ let
version = fileContents ../.version;
versionSuffix =
(if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
(if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 102184)}.${nixpkgs.shortRev}";
forAllSystems = genAttrs supportedSystems;