about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWORLDofPEACE <worldofpeace@protonmail.ch>2020-09-02 15:43:53 -0400
committerGitHub <noreply@github.com>2020-09-02 15:43:53 -0400
commit8739e4235e47cc673a32d6cc70a4aa9296e9d072 (patch)
tree5d15b590054e16415ba1ba10ef51152f15340da4 /nixos
parentdff0034a8b4f5166af2e9ce6811238ab1b43365d (diff)
parent3b68a757ffc5321eccfed186af17037adff10b62 (diff)
Merge pull request #96925 from jtojnar/gpaste-session-path
nixos/gpaste: return sessionPath
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/gpaste.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/programs/gpaste.nix b/nixos/modules/programs/gpaste.nix
index 4f6deb77e5ebc..8bc52c28d814b 100644
--- a/nixos/modules/programs/gpaste.nix
+++ b/nixos/modules/programs/gpaste.nix
@@ -30,5 +30,7 @@ with lib;
     environment.systemPackages = [ pkgs.gnome3.gpaste ];
     services.dbus.packages = [ pkgs.gnome3.gpaste ];
     systemd.packages = [ pkgs.gnome3.gpaste ];
+    # gnome-control-center crashes in Keyboard Shortcuts pane without the GSettings schemas.
+    services.xserver.desktopManager.gnome3.sessionPath = [ pkgs.gnome3.gpaste ];
   };
 }