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

59 lines
768 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
#
{
2017-11-08 09:47:36 +00:00
environment.systemPackages = with pkgs; [
2018-09-16 23:11:57 +00:00
( pkgs.writeScriptBin "unknow" ''#!/bin/sh
${gnused}/bin/sed -i "''${1}d" ~/.ssh/known_hosts
'')
2017-03-01 14:45:50 +00:00
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
2019-02-05 21:33:54 +00:00
screen
2021-03-12 19:30:51 +00:00
rename # rename 's/^/hello/' *.txt
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
2021-10-01 16:54:08 +00:00
lm_sensors
iotop
2017-11-08 09:47:36 +00:00
# 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
2020-06-17 07:33:32 +00:00
kpaste
2017-05-02 12:04:01 +00:00
2017-03-01 14:45:50 +00:00
];
}