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

beta release

Changed files
+3 -2
nixos
+1 -1
nixos/modules/config/nix-channel.nix
··· 71 defaultChannel = mkOption { 72 internal = true; 73 type = types.str; 74 - default = "https://nixos.org/channels/nixos-unstable"; 75 description = "Default NixOS channel to which the root user is subscribed."; 76 }; 77 };
··· 71 defaultChannel = mkOption { 72 internal = true; 73 type = types.str; 74 + default = "https://nixos.org/channels/nixos-25.05"; 75 description = "Default NixOS channel to which the root user is subscribed."; 76 }; 77 };
+1
nixos/modules/misc/version.nix
··· 58 VARIANT = optionalString (cfg.variantName != null) cfg.variantName; 59 VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id; 60 DEFAULT_HOSTNAME = config.system.nixos.distroId; 61 } 62 // cfg.extraOSReleaseArgs; 63
··· 58 VARIANT = optionalString (cfg.variantName != null) cfg.variantName; 59 VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id; 60 DEFAULT_HOSTNAME = config.system.nixos.distroId; 61 + SUPPORT_END = "2025-12-31"; 62 } 63 // cfg.extraOSReleaseArgs; 64
+1 -1
nixos/release.nix
··· 20 21 version = fileContents ../.version; 22 versionSuffix = 23 - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 24 25 # Run the tests for each platform. You can run a test by doing 26 # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,
··· 20 21 version = fileContents ../.version; 22 versionSuffix = 23 + (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 24 25 # Run the tests for each platform. You can run a test by doing 26 # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,