nixos-config/basic-tools.nix

51 lines
717 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
stdenv
2017-06-06 16:29:17 +02:00
# nox
wget
2016-01-06 09:49:40 +01:00
neovim
2017-10-13 16:09:43 +02:00
neovim-remote
zsh
gitFull gitAndTools.hub tig
gnumake
m4
screen
psmisc
pkgs.parallel
gnupg
pwgen
gcc
silver-searcher
2016-01-05 09:27:07 +01:00
fzf
tree
python
2016-06-19 19:02:42 +02:00
python3
python3Packages.ipython
gdb
bind nmap tcpdump telnet
dstat
which
zip
file
unzip
elinks
ctags
nix-prefetch-scripts
nix-repl
jq
];
2016-07-10 08:38:24 +02:00
environment.variables.EDITOR = "${pkgs.neovim}/bin/nvim";
2018-02-19 10:30:59 +01:00
# programs.zsh = {
# enable = true;
# promptInit = "";
# };
2015-09-20 10:45:13 +02:00
programs.bash = {
enableCompletion = true;
};
}