nixos-config/2configs/tools/core.nix

60 lines
796 B
Nix
Raw Normal View History

2017-03-01 15:45:50 +01:00
{ pkgs, ... }:
# tools i use when actually working with the host.
# package version will now be maintained by nix-rebuild
#
{
2017-11-08 10:47:36 +01:00
environment.systemPackages = with pkgs; [
2018-09-17 01:11:57 +02:00
( pkgs.writeScriptBin "unknow" ''#!/bin/sh
${gnused}/bin/sed -i "''${1}d" ~/.ssh/known_hosts
'')
2017-03-01 15:45:50 +01:00
acpi
bc
2017-03-01 16:23:12 +01:00
rsync
2017-03-01 15:45:50 +01:00
exif
file
2017-11-08 10:47:36 +01:00
lsof
which
2017-11-14 10:16:17 +01:00
binutils
2019-02-05 22:33:54 +01:00
screen
2021-03-12 20:30:51 +01:00
rename # rename 's/^/hello/' *.txt
2017-11-08 10:47:36 +01:00
2017-05-02 14:04:01 +02:00
# fs
2017-11-08 10:47:36 +01:00
cifs-utils
2017-05-02 14:04:01 +02:00
dosfstools
2017-11-08 10:47:36 +01:00
ntfs3g
smartmontools
2021-10-01 18:54:08 +02:00
lm_sensors
iotop
2017-11-08 10:47:36 +01:00
# io
2017-03-01 15:45:50 +01:00
pv
usbutils
p7zip
hdparm
2017-11-08 10:47:36 +01:00
# net
wget
curl
2017-03-01 15:45:50 +01:00
inetutils
ncftp
tcpdump
sysstat
wol
2017-05-02 14:04:01 +02:00
iftop
2017-11-08 10:47:36 +01:00
2017-05-02 14:04:01 +02:00
# stockholm
git
gnumake
jq
parallel
proot
rxvt_unicode.terminfo
2023-06-13 00:31:19 +02:00
# TODO: missing stockholm overlay
# kpaste
2017-05-02 14:04:01 +02:00
2017-03-01 15:45:50 +01:00
];
}