misc changes and add tlauncher

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-10-14 09:57:36 +05:30
parent c7c5dfd651
commit c9879b147d
5 changed files with 83 additions and 9 deletions

View File

@@ -1,6 +1,10 @@
final: prev: {
mpd_discord_richpresence = prev.callPackage ./mpd-rpc { };
customscripts = prev.callPackage ./customscripts { };
gruvbox-icons = prev.callPackage ./gruvbox-icons { };
mymacs = c: prev.callPackage ./emacs { conf = c; };
final: prev:
let
call = prev.callPackage; in
{
mpd_discord_richpresence = call ./mpd-rpc { };
customscripts = call ./customscripts { };
gruvbox-icons = call ./gruvbox-icons { };
mymacs = c: call ./emacs { conf = c; };
tlauncher = call ./tlauncher { };
}