Compare commits

...

1 Commits

Author SHA1 Message Date
Weijia Wang
3c80acabe4 24.05 beta release 2024-05-22 18:11:14 +02:00
3 changed files with 3 additions and 2 deletions

View File

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

View File

@@ -31,6 +31,7 @@ let
HOME_URL = optionalString isNixos "https://nixos.org/"; HOME_URL = optionalString isNixos "https://nixos.org/";
DOCUMENTATION_URL = optionalString isNixos "https://nixos.org/learn.html"; DOCUMENTATION_URL = optionalString isNixos "https://nixos.org/learn.html";
SUPPORT_URL = optionalString isNixos "https://nixos.org/community.html"; SUPPORT_URL = optionalString isNixos "https://nixos.org/community.html";
SUPPORT_END = "2024-12-31";
BUG_REPORT_URL = optionalString isNixos "https://github.com/NixOS/nixpkgs/issues"; BUG_REPORT_URL = optionalString isNixos "https://github.com/NixOS/nixpkgs/issues";
ANSI_COLOR = optionalString isNixos "1;34"; ANSI_COLOR = optionalString isNixos "1;34";
IMAGE_ID = optionalString (config.system.image.id != null) config.system.image.id; IMAGE_ID = optionalString (config.system.image.id != null) config.system.image.id;

View File

@@ -12,7 +12,7 @@ let
version = fileContents ../.version; version = fileContents ../.version;
versionSuffix = versionSuffix =
(if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; (if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 630170)}.${nixpkgs.shortRev}";
# Run the tests for each platform. You can run a test by doing # Run the tests for each platform. You can run a test by doing
# e.g. nix-build release.nix -A tests.login.x86_64-linux, # e.g. nix-build release.nix -A tests.login.x86_64-linux,