diff options
author | Ryan Lahfa | 2023-05-22 21:05:44 +0200 |
---|---|---|
committer | Raito Bezarius | 2023-05-22 21:05:44 +0200 |
commit | 8966c43feba2c701ed624302b6a935f97bcbdf88 (patch) | |
tree | 6d64ac0e7859bba7389d020925069e27fb4251ff | |
parent | 29cdfd50f06e966f7498a21d344a6385299f1177 (diff) |
23.05 beta release 23.05-beta
-rw-r--r-- | nixos/modules/misc/version.nix | 3 | ||||
-rw-r--r-- | nixos/release.nix | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index 780a6b2a83a6..f4e36a3e87b9 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -28,6 +28,7 @@ let DOCUMENTATION_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/learn.html"; SUPPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/community.html"; BUG_REPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://github.com/NixOS/nixpkgs/issues"; + SUPPORT_END = "2023-12-31"; } // lib.optionalAttrs (cfg.variant_id != null) { VARIANT_ID = cfg.variant_id; }; @@ -143,7 +144,7 @@ in defaultChannel = mkOption { internal = true; type = types.str; - default = "https://nixos.org/channels/nixos-unstable"; + default = "https://nixos.org/channels/nixos-23.05"; description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; }; diff --git a/nixos/release.nix b/nixos/release.nix index 93ebe000fc00..a915c36d1efe 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -12,7 +12,7 @@ let version = fileContents ../.version; versionSuffix = - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; + (if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 487364)}.${nixpkgs.shortRev}"; # 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’, |