stockholm/makefu/2configs/tools/core.nix

54 lines
653 B
Nix
Raw Normal View History

2017-03-01 14:45:50 +00:00
{ pkgs, ... }:
# tools i use when actually working with the host.
# package version will now be maintained by nix-rebuild
#
# essentially `nix-env -q` of the main user
{
2017-11-08 09:47:36 +00:00
environment.systemPackages = with pkgs; [
2017-03-01 14:45:50 +00:00
at_spi2_core
acpi
bc
2017-03-01 15:23:12 +00:00
rsync
2017-03-01 14:45:50 +00:00
exif
file
2017-11-08 09:47:36 +00:00
lsof
which
2017-11-14 09:16:17 +00:00
binutils
2017-11-08 09:47:36 +00:00
2017-05-02 12:04:01 +00:00
# fs
2017-11-08 09:47:36 +00:00
cifs-utils
2017-05-02 12:04:01 +00:00
dosfstools
2017-11-08 09:47:36 +00:00
ntfs3g
smartmontools
# io
2017-03-01 14:45:50 +00:00
pv
usbutils
p7zip
hdparm
2017-11-08 09:47:36 +00:00
# net
wget
curl
2017-03-01 14:45:50 +00:00
inetutils
ncftp
tcpdump
sysstat
wol
2017-05-02 12:04:01 +00:00
iftop
2017-11-08 09:47:36 +00:00
2017-05-02 12:04:01 +00:00
# stockholm
git
gnumake
jq
parallel
proot
populate
rxvt_unicode.terminfo
2017-03-01 14:45:50 +00:00
krebspaste
2017-05-02 12:04:01 +00:00
2017-03-01 14:45:50 +00:00
];
}