44 lines
720 B
Nix
44 lines
720 B
Nix
{ pkgs, inputs, ... }: {
|
|
# this extends the list from:
|
|
# https://github.com/numtide/srvos/blob/master/server.nix#L10
|
|
environment.systemPackages = with pkgs; [
|
|
socat
|
|
whois
|
|
|
|
nix-output-monitor
|
|
inputs.attic.packages.x86_64-linux.attic
|
|
jq
|
|
psmisc
|
|
libarchive
|
|
sipcalc
|
|
iperf
|
|
openssl
|
|
binutils
|
|
file
|
|
wget
|
|
htop
|
|
ripgrep
|
|
lsof
|
|
tcpdump
|
|
rsync
|
|
git
|
|
tig
|
|
lazygit
|
|
python3
|
|
iotop
|
|
man-pages
|
|
netcat
|
|
mtr
|
|
(neovim.override { vimAlias = true; })
|
|
|
|
pciutils
|
|
ethtool
|
|
usbutils
|
|
|
|
ipmitool
|
|
|
|
nix-top
|
|
# tries to default to soft-float due to out-dated cc-rs
|
|
] ++ lib.optional (!stdenv.hostPlatform.isRiscV) bandwhich;
|
|
}
|