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
This commit is contained in:
Gabriel Arazas 2021-12-04 23:28:22 +08:00
parent b7b641aacd
commit dc28d16605

View File

@ -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
'';