23.05 beta release · NixOS/nixpkgs@8966c43

1 min read Original article ↗

2 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -28,6 +28,7 @@ let

2828

DOCUMENTATION_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/learn.html";

2929

SUPPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/community.html";

3030

BUG_REPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://github.com/NixOS/nixpkgs/issues";

31+

SUPPORT_END = "2023-12-31";

3132

} // lib.optionalAttrs (cfg.variant_id != null) {

3233

VARIANT_ID = cfg.variant_id;

3334

};

@@ -143,7 +144,7 @@ in

143144

defaultChannel = mkOption {

144145

internal = true;

145146

type = types.str;

146-

default = "https://nixos.org/channels/nixos-unstable";

147+

default = "https://nixos.org/channels/nixos-23.05";

147148

description = lib.mdDoc "Default NixOS channel to which the root user is subscribed.";

148149

};

149150
Original file line numberDiff line numberDiff line change

@@ -12,7 +12,7 @@ let

1212
1313

version = fileContents ../.version;

1414

versionSuffix =

15-

(if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";

15+

(if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 487364)}.${nixpkgs.shortRev}";

1616
1717

# Run the tests for each platform. You can run a test by doing

1818

# e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,