nixos/gnome: fix option label

It is no longer GNOME 3.
master
Jan Tojnar 2021-06-07 08:34:38 +02:00 committed by GitHub
parent 6d84e50b19
commit 99fcca7b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
description = "Enable Gnome 3 desktop manager.";
description = "Enable GNOME desktop manager.";
};
sessionPath = mkOption {
@ -283,7 +283,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;
''];