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

24.11 beta release

Changed files
+4 -3
nixos
+1 -1
nixos/modules/config/nix-channel.nix
··· 70 defaultChannel = mkOption { 71 internal = true; 72 type = types.str; 73 - default = "https://nixos.org/channels/nixos-unstable"; 74 description = "Default NixOS channel to which the root user is subscribed."; 75 }; 76 };
··· 70 defaultChannel = mkOption { 71 internal = true; 72 type = types.str; 73 + default = "https://nixos.org/channels/nixos-24.11"; 74 description = "Default NixOS channel to which the root user is subscribed."; 75 }; 76 };
+1
nixos/modules/misc/version.nix
··· 42 VARIANT = optionalString (cfg.variantName != null) cfg.variantName; 43 VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id; 44 DEFAULT_HOSTNAME = config.networking.fqdnOrHostName; 45 }; 46 47 initrdReleaseContents = (removeAttrs osReleaseContents [ "BUILD_ID" ]) // {
··· 42 VARIANT = optionalString (cfg.variantName != null) cfg.variantName; 43 VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id; 44 DEFAULT_HOSTNAME = config.networking.fqdnOrHostName; 45 + SUPPORT_END = "2025-06-30"; 46 }; 47 48 initrdReleaseContents = (removeAttrs osReleaseContents [ "BUILD_ID" ]) // {
+2 -2
nixos/release.nix
··· 1 with import ../lib; 2 3 - { nixpkgs ? { outPath = cleanSource ./..; revCount = 130979; shortRev = "gfedcba"; } 4 , stableBranch ? false 5 , supportedSystems ? [ "x86_64-linux" "aarch64-linux" ] 6 , configuration ? {} ··· 12 13 version = fileContents ../.version; 14 versionSuffix = 15 - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 16 17 # Run the tests for each platform. You can run a test by doing 18 # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,
··· 1 with import ../lib; 2 3 + { nixpkgs ? { outPath = cleanSource ./..; revCount = 708350; shortRev = "1d95cb5"; } 4 , stableBranch ? false 5 , supportedSystems ? [ "x86_64-linux" "aarch64-linux" ] 6 , configuration ? {} ··· 12 13 version = fileContents ../.version; 14 versionSuffix = 15 + (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 16 17 # Run the tests for each platform. You can run a test by doing 18 # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,