25 lines
309 B
Nix
25 lines
309 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
curl
|
|
eza
|
|
git
|
|
;
|
|
};
|
|
hm.home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
btop
|
|
bat
|
|
ripgrep
|
|
fd
|
|
lazygit
|
|
zoxide
|
|
zellij
|
|
ouch
|
|
;
|
|
};
|
|
}
|