Merge pull request #85711 from worldofpeace/gnome-iso
nixos/release: add GNOME ISO
This commit is contained in:
commit
4426104c8c
|
@ -26,6 +26,11 @@
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>GNOME desktop environment was upgraded to 3.36, see its <link xlink:href="https://help.gnome.org/misc/release-notes/3.36/">release notes</link>.</para>
|
<para>GNOME desktop environment was upgraded to 3.36, see its <link xlink:href="https://help.gnome.org/misc/release-notes/3.36/">release notes</link>.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
We now distribute a GNOME ISO.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
PHP now defaults to PHP 7.4, updated from 7.3.
|
PHP now defaults to PHP 7.4, updated from 7.3.
|
||||||
|
|
|
@ -50,6 +50,7 @@ in rec {
|
||||||
(onFullSupported "nixos.dummy")
|
(onFullSupported "nixos.dummy")
|
||||||
(onAllSupported "nixos.iso_minimal")
|
(onAllSupported "nixos.iso_minimal")
|
||||||
(onSystems ["x86_64-linux"] "nixos.iso_plasma5")
|
(onSystems ["x86_64-linux"] "nixos.iso_plasma5")
|
||||||
|
(onSystems ["x86_64-linux"] "nixos.iso_gnome")
|
||||||
(onFullSupported "nixos.manual")
|
(onFullSupported "nixos.manual")
|
||||||
(onSystems ["x86_64-linux"] "nixos.ova")
|
(onSystems ["x86_64-linux"] "nixos.ova")
|
||||||
(onSystems ["aarch64-linux"] "nixos.sd_image")
|
(onSystems ["aarch64-linux"] "nixos.sd_image")
|
||||||
|
|
|
@ -155,6 +155,12 @@ in rec {
|
||||||
inherit system;
|
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
|
# A variant with a more recent (but possibly less stable) kernel
|
||||||
# that might support more hardware.
|
# that might support more hardware.
|
||||||
iso_minimal_new_kernel = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system: makeIso {
|
iso_minimal_new_kernel = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system: makeIso {
|
||||||
|
|
Loading…
Reference in New Issue