19 lines
226 B
Nix
19 lines
226 B
Nix
{ lib, config, pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
curl
|
|
git
|
|
zip
|
|
unzip
|
|
lsof
|
|
htop
|
|
btop
|
|
xclip
|
|
tio
|
|
tmux
|
|
usbutils
|
|
man-pages
|
|
man-pages-posix
|
|
];
|
|
}
|