nixos/gnome: fix option label

It is no longer GNOME 3.

(cherry picked from commit 99fcca7b6bc850e1c1c47e9fbad41fc3264170f6)
This commit is contained in:
Jan Tojnar 2021-06-07 08:34:38 +02:00 committed by Jonathan Ringer
parent dbf7af9afc
commit 403fb2db47

View File

@ -174,7 +174,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
description = "Enable Gnome 3 desktop manager.";
description = "Enable GNOME desktop manager.";
};
sessionPath = mkOption {
@ -259,7 +259,7 @@ in
(mkIf (cfg.enable || flashbackEnabled) {
# Seed our configuration into nixos-generate-config
system.nixos-generate-config.desktopConfiguration = [''
# Enable the GNOME 3 Desktop Environment.
# Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
''];