From dc28d1660595235270c47e2fb6180feec3d74380 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 4 Dec 2021 23:28:22 +0800 Subject: [PATCH] Revert installing keylist entries from pop-shell Custom GSettings schema is not yet working. For more information, please see the following issue. https://github.com/NixOS/nixpkgs/issues/92265 --- pkgs/gnome-shell-extension-pop-shell.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/gnome-shell-extension-pop-shell.nix b/pkgs/gnome-shell-extension-pop-shell.nix index 09de2ed6..2786122a 100644 --- a/pkgs/gnome-shell-extension-pop-shell.nix +++ b/pkgs/gnome-shell-extension-pop-shell.nix @@ -22,7 +22,16 @@ stdenv.mkDerivation rec { mkdir -p ${INSTALLBASE}/${passthru.extensionUuid} cp -r _build/* ${INSTALLBASE}/${passthru.extensionUuid}/ - install -Dm644 keybindings/*.xml -t $out/share/gnome-control-center/keybindings + # TODO: Uncomment once custom gsettings works. + # Unfortunately custom gsettings seems to be not properly integrated with NixOS yet. + # + # For more information, please track the following issue: + # https://github.com/NixOS/nixpkgs/issues/92265 + # + # It also contains additional links to related issues and whatnot. + #install -Dm644 keybindings/*.xml -t $out/share/gnome-control-center/keybindings + + # Export the custom GSettings schema. install -Dm644 _build/schemas/* -t $out/share/glib-2.0/schemas '';