22 lines
237 B
Nix
22 lines
237 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
vim
|
||
|
joe
|
||
|
nano
|
||
|
htop
|
||
|
btop
|
||
|
ripgrep
|
||
|
fd
|
||
|
tmux
|
||
|
git
|
||
|
curl
|
||
|
rsync
|
||
|
usbutils
|
||
|
nix-tree
|
||
|
# For kitty terminfo.
|
||
|
kitty
|
||
|
];
|
||
|
}
|