Commit 1dcdcf9e authored by jopejoe1's avatar jopejoe1
Browse files

25.11 beta release

parent 213fed03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ in
      defaultChannel = mkOption {
        internal = true;
        type = types.str;
        default = "https://channels.nixos.org/nixos-unstable";
        default = "https://channels.nixos.org/nixos-25.11";
        description = "Default NixOS channel to which the root user is subscribed.";
      };
    };
+1 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@ let
      VARIANT = optionalString (cfg.variantName != null) cfg.variantName;
      VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id;
      DEFAULT_HOSTNAME = config.system.nixos.distroId;
      SUPPORT_END = "2026-06-30";
    }
    // cfg.extraOSReleaseArgs;

+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ let

  version = fileContents ../.version;
  versionSuffix =
    (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
    (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 901827}.${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’,