summary refs log tree commit diff
diff options
context:
space:
mode:
authorWORLDofPEACE <worldofpeace@protonmail.ch>2020-09-23 15:34:13 -0400
committerGitHub <noreply@github.com>2020-09-23 15:34:13 -0400
commitbc260badaebf67442befe20fb443034d3a91f2b3 (patch)
tree989224594df4a486e5566145216137602fa0da2b
parent189520cc63d3e46638c1e1f7a11386d9dacc2ce7 (diff)
parentcc9d3bf73fa5d019a6972c6d61033601f10875a8 (diff)
Merge pull request #98524 from jonringer/cut-beta 20.09-beta
nixos: now beta
-rw-r--r--nixos/release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/release.nix b/nixos/release.nix
index 602aad8018c9a..45693ba52289f 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -12,7 +12,7 @@ let
 
   version = fileContents ../.version;
   versionSuffix =
-    (if stableBranch then "." else "alpha") + "${toString (nixpkgs.revCount - 242760)}.${nixpkgs.shortRev}";
+    (if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 242760)}.${nixpkgs.shortRev}";
 
   # Run the tests for each platform.  You can run a test by doing
   # e.g. ‘nix-build -A tests.login.x86_64-linux’, or equivalently,