mirror of
https://github.com/ItsDrike/nixdots
synced 2025-12-12 23:56:59 +00:00
14 lines
289 B
Nix
14 lines
289 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = {
|
|
bitcoin = pkgs.callPackage ./bitcoin.nix {};
|
|
cheatsh = pkgs.callPackage ./cheatsh {};
|
|
colors256 = pkgs.callPackage ./colors256 {};
|
|
unix = pkgs.callPackage ./unix {};
|
|
gh-notify = pkgs.callPackage ./gh-notify {};
|
|
};
|
|
in
|
|
packages
|
|
|