nixos-config/basic-tools.nix

50 lines
685 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
stdenv
nox
wget
2016-01-06 09:49:40 +01:00
neovim
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
];
environment.variables.EDITOR = "${pkgs.vim}/bin/vim";
programs.zsh = {
enable = true;
promptInit = "";
};
2015-09-20 10:45:13 +02:00
programs.bash = {
enableCompletion = true;
};
}