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

23 lines
252 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
joe
nano
htop
btop
ripgrep
fd
tmux
git
curl
rsync
2024-06-09 21:09:37 +02:00
ssh-to-age
usbutils
nix-tree
# For kitty terminfo.
kitty
];
}