summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-08-01 19:02:50 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-08-01 20:36:25 +0200
commit62e665e1ec92252817bd99639f83daaeab4d3f9a (patch)
tree1ad4c4943113a798efc250bd428ee33e68a54cf8 /nixos
parent9cd6342008a643005d705c7a79740c61635d4966 (diff)
downloadnixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar.gz
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar.bz2
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar.lz
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar.xz
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.tar.zst
nixpkgs-62e665e1ec92252817bd99639f83daaeab4d3f9a.zip
nixos/gnome3: warn against `sessionPath`
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/gnome3.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index a8052649ae0..ee9b11928ae 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -57,8 +57,12 @@ in {
       sessionPath = mkOption {
         default = [];
         example = literalExample "[ pkgs.gnome3.gpaste ]";
-        description = "Additional list of packages to be added to the session search path.
-                       Useful for gnome shell extensions or gsettings-conditionated autostart.";
+        description = ''
+          Additional list of packages to be added to the session search path.
+          Useful for GNOME Shell extensions or GSettings-conditional autostart.
+
+          Note that this should be a last resort; patching the package is preferred (see GPaste).
+        '';
         apply = list: list ++ [ pkgs.gnome3.gnome-shell pkgs.gnome3.gnome-shell-extensions ];
       };