1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-06-09 04:46:03 +02:00
github.com-tboerger-nixos-c.../shared/modules/tools/default.nix

38 lines
526 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
nix-index
nmap
p7zip
pciutils
rsync
s3cmd
silver-searcher
tldr
tmux
tree
unzip
vim
wget
yq
];
};
};
}