nix-infra/config/common/admin-environment.nix

22 lines
237 B
Nix
Raw Normal View History

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