mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
12 lines
143 B
Nix
12 lines
143 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
|
|
scriptPkgs = (import ./packages {inherit pkgs;});
|
|
in {
|
|
home.packages = with scriptPkgs; [
|
|
bitcoin
|
|
];
|
|
}
|