nixos-config/2configs/tools/core.nix
2023-06-13 00:31:19 +02:00

60 lines
796 B
Nix

{ pkgs, ... }:
# tools i use when actually working with the host.
# package version will now be maintained by nix-rebuild
#
{
environment.systemPackages = with pkgs; [
( pkgs.writeScriptBin "unknow" ''#!/bin/sh
${gnused}/bin/sed -i "''${1}d" ~/.ssh/known_hosts
'')
acpi
bc
rsync
exif
file
lsof
which
binutils
screen
rename # rename 's/^/hello/' *.txt
# fs
cifs-utils
dosfstools
ntfs3g
smartmontools
lm_sensors
iotop
# io
pv
usbutils
p7zip
hdparm
# net
wget
curl
inetutils
ncftp
tcpdump
sysstat
wol
iftop
# stockholm
git
gnumake
jq
parallel
proot
rxvt_unicode.terminfo
# TODO: missing stockholm overlay
# kpaste
];
}