+1
-1
nixos/modules/misc/version.nix
+1
-1
nixos/modules/misc/version.nix
···
114
114
defaultChannel = mkOption {
115
115
internal = true;
116
116
type = types.str;
117
-
default = "https://nixos.org/channels/nixos-unstable";
117
+
default = "https://nixos.org/channels/nixos-22.11";
118
118
description = lib.mdDoc "Default NixOS channel to which the root user is subscribed.";
119
119
};
120
120
+1
-1
nixos/release.nix
+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 - 428633}.${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’,