summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-06-07 08:34:38 +0200
committerGitHub <noreply@github.com>2021-06-07 08:34:38 +0200
commit99fcca7b6bc850e1c1c47e9fbad41fc3264170f6 (patch)
tree24db761b3ad8a8301ef700f8ecdf2e8b65ef117c
parent6d84e50b1989ac38c332cfd682660527c2c0cc65 (diff)
downloadnixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar.gz
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar.bz2
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar.lz
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar.xz
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.tar.zst
nixpkgs-99fcca7b6bc850e1c1c47e9fbad41fc3264170f6.zip
nixos/gnome: fix option label
It is no longer GNOME 3.
-rw-r--r--nixos/modules/services/x11/desktop-managers/gnome.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/gnome.nix b/nixos/modules/services/x11/desktop-managers/gnome.nix
index 2b2ee019aeb..b0859321a52 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome.nix
@@ -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;
       ''];