mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
24.05 beta release
This commit is contained in:
parent
0b49ef697b
commit
3c80acabe4
@ -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.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -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;
|
||||||
|
@ -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’,
|
||||||
|
Loading…
Reference in New Issue
Block a user