1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/modules/tools.nix
2022-10-25 09:53:40 +02:00

35 lines
481 B
Nix

{ pkgs, lib, config, options, inputs, ... }:
with lib;
{
config = {
environment = {
systemPackages = with pkgs; [
coreutils
dig
file
git
gnumake
gomplate
htop
hub
hwinfo
jq
lsof
minio-client
nmap
p7zip
pciutils
rsync
s3cmd
silver-searcher
tmux
tree
vim
wget
yq
];
};
};
}