1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../machines/modules/tools.nix
2022-11-10 16:01:39 +01:00

36 lines
499 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
tmux
tree
vim
wget
yq
];
};
};
}