nixdots/home/packages/cli/scripts/default.nix

16 lines
200 B
Nix
Raw Normal View History

2024-06-21 12:58:31 +00:00
{
pkgs,
...
}: let
scriptPkgs = (import ./packages {inherit pkgs;});
in {
home.packages = with scriptPkgs; [
bitcoin
2024-06-21 13:20:41 +00:00
cheatsh
2024-06-21 13:31:29 +00:00
colors256
2024-06-21 13:35:32 +00:00
unix
2024-06-21 13:54:02 +00:00
gh-notify
2024-06-21 12:58:31 +00:00
];
}