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

+1 -6
+1 -6
nixos/modules/services/x11/desktop-managers/gnome.nix
··· 222 222 debug = mkEnableOption "gnome-session debug messages"; 223 223 224 224 flashback = { 225 - enableMetacity = mkOption { 226 - type = types.bool; 227 - default = true; 228 - example = "false"; 229 - description = "Whether to enable the standard Metacity GNOME flashback session."; 230 - }; 225 + enableMetacity = mkEnableOption "the standard GNOME Flashback session with Metacity"; 231 226 232 227 customSessions = mkOption { 233 228 type = types.listOf (types.submodule {