diff options
author | Martin Weinelt | 2022-11-21 21:08:55 +0100 |
---|---|---|
committer | Martin Weinelt | 2022-11-21 21:08:55 +0100 |
commit | bb029673bface2fc9fb807f209f63ca06478a72d (patch) | |
tree | 010535e90026f4bbb357d94cf0c1a64377f677c9 | |
parent | 550e897a481b769bda516e4543166796fb455b7d (diff) |
22.11 beta release 22.11-beta
-rw-r--r-- | nixos/modules/misc/version.nix | 2 | ||||
-rw-r--r-- | nixos/release.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index b3cdaf5568d4..27d10f01ca4f 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -114,7 +114,7 @@ in defaultChannel = mkOption { internal = true; type = types.str; - default = "https://nixos.org/channels/nixos-unstable"; + default = "https://nixos.org/channels/nixos-22.11"; description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; }; diff --git a/nixos/release.nix b/nixos/release.nix index 919aa86a2d63..8b4b27a1ef2e 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -12,7 +12,7 @@ let version = fileContents ../.version; versionSuffix = - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; + (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 428633}.${nixpkgs.shortRev}"; # Run the tests for each platform. You can run a test by doing # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’, |