+1
-1
nixos/modules/config/nix-channel.nix
+1
-1
nixos/modules/config/nix-channel.nix
+1
nixos/modules/misc/version.nix
+1
nixos/modules/misc/version.nix
···
42
VARIANT = optionalString (cfg.variantName != null) cfg.variantName;
43
VARIANT_ID = optionalString (cfg.variant_id != null) cfg.variant_id;
44
DEFAULT_HOSTNAME = config.networking.fqdnOrHostName;
45
+
SUPPORT_END = "2025-06-30";
46
};
47
48
initrdReleaseContents = (removeAttrs osReleaseContents [ "BUILD_ID" ]) // {
+2
-2
nixos/release.nix
+2
-2
nixos/release.nix
···
1
with import ../lib;
2
3
-
{ nixpkgs ? { outPath = cleanSource ./..; revCount = 130979; shortRev = "gfedcba"; }
4
, stableBranch ? false
5
, supportedSystems ? [ "x86_64-linux" "aarch64-linux" ]
6
, configuration ? {}
···
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’,
···
1
with import ../lib;
2
3
+
{ nixpkgs ? { outPath = cleanSource ./..; revCount = 708350; shortRev = "1d95cb5"; }
4
, stableBranch ? false
5
, supportedSystems ? [ "x86_64-linux" "aarch64-linux" ]
6
, configuration ? {}
···
12
13
version = fileContents ../.version;
14
versionSuffix =
15
+
(if stableBranch then "." else "beta") + "${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’,