mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
21 lines
513 B
Nix
21 lines
513 B
Nix
|
{
|
||
|
nixpkgs.overlays = [
|
||
|
(final: prev: {
|
||
|
srb2 = prev.srb2.overrideAttrs (oldAttrs: {
|
||
|
desktopItems = [
|
||
|
(prev.makeDesktopItem rec {
|
||
|
name = "Sonic Robo Blast 2";
|
||
|
exec = oldAttrs.pname;
|
||
|
icon = oldAttrs.pname;
|
||
|
comment = oldAttrs.meta.description;
|
||
|
desktopName = name;
|
||
|
genericName = name;
|
||
|
startupWMClass = ".srb2-wrapped";
|
||
|
categories = [ "Game" ];
|
||
|
})
|
||
|
];
|
||
|
});
|
||
|
})
|
||
|
];
|
||
|
}
|