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