mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 03:32:08 +01:00
36 lines
499 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|