mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-13 01:47:17 +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
|
||
|
];
|
||
|
}
|