nixconfigs/packages.nix

31 lines
377 B
Nix
Raw Normal View History

2018-09-25 23:09:53 +02:00
{ pkgs, config, ... }:
{
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
wget
vim
vimPlugins.vim-nix
vimPlugins.pathogen
2018-09-25 23:09:53 +02:00
tmux
htop
zsh
btrfs-progs
git
python3
manpages
dnsutils
netcat
ntfs3g
file
nix-repl
strace
ltrace
valgrind
lzop
p7zip
2018-09-25 23:09:53 +02:00
];
}