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