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

22.11 beta release

Changed files
+2 -2
nixos
modules
+1 -1
nixos/modules/misc/version.nix
··· 114 defaultChannel = mkOption { 115 internal = true; 116 type = types.str; 117 - default = "https://nixos.org/channels/nixos-unstable"; 118 description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; 119 }; 120
··· 114 defaultChannel = mkOption { 115 internal = true; 116 type = types.str; 117 + default = "https://nixos.org/channels/nixos-22.11"; 118 description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; 119 }; 120
+1 -1
nixos/release.nix
··· 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’,
··· 12 13 version = fileContents ../.version; 14 versionSuffix = 15 + (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 428633}.${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’,