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

16 lines
200 B
Nix
Raw Normal View History

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