mirror of
https://github.com/ItsDrike/nixdots
synced 2025-04-16 21:02:27 +00:00
11 lines
152 B
Nix
11 lines
152 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = {
|
|
bitcoin = pkgs.callPackage ./bitcoin.nix {};
|
|
cheatsh = pkgs.callPackage ./cheatsh {};
|
|
};
|
|
in
|
|
packages
|
|
|