aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/doc/manual/release-notes/rl-2009.xml5
-rw-r--r--nixos/release-combined.nix1
-rw-r--r--nixos/release.nix6
3 files changed, 12 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2009.xml b/nixos/doc/manual/release-notes/rl-2009.xml
index 07f11239366b..1cf7c977eeb0 100644
--- a/nixos/doc/manual/release-notes/rl-2009.xml
+++ b/nixos/doc/manual/release-notes/rl-2009.xml
@@ -28,6 +28,11 @@
</listitem>
<listitem>
<para>
+ We now distribute a GNOME ISO.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
PHP now defaults to PHP 7.4, updated from 7.3.
</para>
</listitem>
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index 2f5dd28e8bb5..2753fd6d6389 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -50,6 +50,7 @@ in rec {
(onFullSupported "nixos.dummy")
(onAllSupported "nixos.iso_minimal")
(onSystems ["x86_64-linux"] "nixos.iso_plasma5")
+ (onSystems ["x86_64-linux"] "nixos.iso_gnome")
(onFullSupported "nixos.manual")
(onSystems ["x86_64-linux"] "nixos.ova")
(onSystems ["aarch64-linux"] "nixos.sd_image")
diff --git a/nixos/release.nix b/nixos/release.nix
index 6107f3529715..d31fbd11e5cf 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -155,6 +155,12 @@ in rec {
inherit system;
});
+ iso_gnome = forMatchingSystems [ "x86_64-linux" ] (system: makeIso {
+ module = ./modules/installer/cd-dvd/installation-cd-graphical-gnome.nix;
+ type = "gnome";
+ inherit system;
+ });
+
# A variant with a more recent (but possibly less stable) kernel
# that might support more hardware.
iso_minimal_new_kernel = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system: makeIso {