nix-config/overlays/srb2.nix
Donovan Glover 18acfd0749
meta(flake.nix): Add overlays as outputs
Should make it easier for other repositories to use the overlays from
this repository.
2024-03-31 06:21:47 -04:00

17 lines
417 B
Nix

(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" ];
})
];
});
})