summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-05-28 14:56:38 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-05-28 14:57:36 +0200
commitb2f86e66629d1d05a7da7dfff5bf18353bf7968e (patch)
treea391d66c6f5ae2ce7c12c41eb7f0a0af62a20bb2
parent7731f618b7536ce510f6e7ebd9581251d704c956 (diff)
downloadnixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar.gz
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar.bz2
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar.lz
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar.xz
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.tar.zst
nixpkgs-b2f86e66629d1d05a7da7dfff5bf18353bf7968e.zip
nixos/gnome: Do not enable metacity by default
Did not realize this is not conditional on gnome-flashback being enabled.

Partially reverts https://github.com/NixOS/nixpkgs/pull/113957
-rw-r--r--nixos/modules/services/x11/desktop-managers/gnome.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/gnome.nix b/nixos/modules/services/x11/desktop-managers/gnome.nix
index c5e6caeea90..37e61f32823 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome.nix
@@ -222,12 +222,7 @@ in
       debug = mkEnableOption "gnome-session debug messages";
 
       flashback = {
-        enableMetacity = mkOption {
-          type = types.bool;
-          default = true;
-          example = "false";
-          description = "Whether to enable the standard Metacity GNOME flashback session.";
-        };
+        enableMetacity = mkEnableOption "the standard GNOME Flashback session with Metacity";
 
         customSessions = mkOption {
           type = types.listOf (types.submodule {