nix-config/modules/cli-essentials.nix

24 lines
240 B
Nix
Raw Permalink Normal View History

2025-01-14 01:29:24 +01:00
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
wget
curl
git
neofetch
bat
tealdeer
pdfgrep
pdftk
p7zip
];
programs = {
htop.enable = true;
zsh.enable = true;
};
}