24 lines
323 B
Nix
24 lines
323 B
Nix
{ config, pkgs, ... }: {
|
|
programs.neovim = { defaultEditor = true; };
|
|
environment.systemPackages = with pkgs; [
|
|
pciutils
|
|
btop
|
|
nload
|
|
htop
|
|
nethogs
|
|
uutils-coreutils-noprefix
|
|
neovim
|
|
git
|
|
curl
|
|
bat
|
|
eza
|
|
dua
|
|
ripgrep
|
|
dig
|
|
fd
|
|
proxychains-ng
|
|
unzip
|
|
wget
|
|
];
|
|
}
|