23 lines
212 B
Nix
23 lines
212 B
Nix
{ pkgs, ... } : {
|
|
home.packages = with pkgs; [
|
|
# region Tools
|
|
git
|
|
gh
|
|
|
|
screen
|
|
|
|
mc
|
|
|
|
btop
|
|
|
|
wget
|
|
traceroute
|
|
dnsutils
|
|
|
|
atool
|
|
zip
|
|
unzip
|
|
p7zip
|
|
# endregion
|
|
];
|
|
} |