keymapp: re-add missing desktop entry (#414950)

This commit is contained in:
Alexis Hildebrandt 2025-06-08 16:43:17 +02:00 committed by GitHub
commit e8fc883a83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,15 +48,17 @@ stdenv.mkDerivation {
gappsWrapperArgs+=(--set-default '__NV_PRIME_RENDER_OFFLOAD' 1)
'';
desktopItem = makeDesktopItem {
name = "keymapp";
icon = "keymapp";
desktopName = "Keymapp";
categories = [
"Settings"
"HardwareSettings"
];
type = "Application";
exec = "keymapp";
};
desktopItems = [
(makeDesktopItem {
name = "keymapp";
icon = "keymapp";
desktopName = "Keymapp";
categories = [
"Settings"
"HardwareSettings"
];
type = "Application";
exec = "keymapp";
})
];
}