mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-24 18:39:01 +00:00
15 lines
200 B
Nix
15 lines
200 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
|
|
scriptPkgs = (import ./packages {inherit pkgs;});
|
|
in {
|
|
home.packages = with scriptPkgs; [
|
|
bitcoin
|
|
cheatsh
|
|
colors256
|
|
unix
|
|
gh-notify
|
|
];
|
|
}
|