Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

23.05 beta release

Changed files
+3 -2
nixos
modules
+2 -1
nixos/modules/misc/version.nix
··· 28 28 DOCUMENTATION_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/learn.html"; 29 29 SUPPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/community.html"; 30 30 BUG_REPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://github.com/NixOS/nixpkgs/issues"; 31 + SUPPORT_END = "2023-12-31"; 31 32 } // lib.optionalAttrs (cfg.variant_id != null) { 32 33 VARIANT_ID = cfg.variant_id; 33 34 }; ··· 143 144 defaultChannel = mkOption { 144 145 internal = true; 145 146 type = types.str; 146 - default = "https://nixos.org/channels/nixos-unstable"; 147 + default = "https://nixos.org/channels/nixos-23.05"; 147 148 description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; 148 149 }; 149 150
+1 -1
nixos/release.nix
··· 12 12 13 13 version = fileContents ../.version; 14 14 versionSuffix = 15 - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 15 + (if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 487364)}.${nixpkgs.shortRev}"; 16 16 17 17 # Run the tests for each platform. You can run a test by doing 18 18 # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,