diff options
author | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-01-16 21:29:21 -0800 |
---|---|---|
committer | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-01-16 21:44:42 -0800 |
commit | 8c05a809d70aeeb6c6e23d405ba693040ad00730 (patch) | |
tree | 70cc604e5eeb943e15c925f8e0c4d6d1eae8ed7c /pkgs/default.nix |
init the module, README, packages, and other stuff
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r-- | pkgs/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix new file mode 100644 index 0000000..7589f50 --- /dev/null +++ b/pkgs/default.nix @@ -0,0 +1,10 @@ +final: prev: { + mx-puppet-groupme = prev.callPackage ./mx-puppet-groupme { }; + mx-puppet-slack = prev.callPackage ./mx-puppet-slack { }; + + mautrix-twitter = prev.callPackage ./mautrix-twitter { }; + mautrix-instagram = prev.callPackage ./mautrix-instagram { }; + mautrix-wsproxy = prev.callPackage ./mautrix-wsproxy { }; + + matrix-emailbridge = prev.callPackage ./matrix-emailbridge { }; +} |