work/root/home/user/.config/nixpkgs/config.nix

34 lines
454 B
Nix
Raw Normal View History

2020-05-26 07:35:49 +00:00
{
packageOverrides = pkgs: with pkgs; {
2020-05-26 07:07:46 +00:00
2020-05-26 07:35:49 +00:00
myPackages = pkgs.buildEnv {
name = "myPackages";
paths = [
aspell
bc
2020-05-26 07:07:46 +00:00
clang
2020-05-26 07:35:49 +00:00
coreutils
2020-05-26 07:07:46 +00:00
ctags
curl
2020-05-26 07:35:49 +00:00
ffmpeg
gdb
2020-05-26 07:36:12 +00:00
git
2020-05-26 07:07:46 +00:00
gnupg
go
2020-05-26 07:35:49 +00:00
jq
2020-05-26 07:07:46 +00:00
nix-prefetch-scripts
openssh
pwgen
qemu
tmux
tree
vim
2020-05-26 07:35:49 +00:00
weechat
2020-05-26 07:07:46 +00:00
wget
2020-07-08 07:26:10 +00:00
zsh
2020-05-26 07:07:46 +00:00
];
2020-05-26 07:35:49 +00:00
};
2020-05-26 07:07:46 +00:00
};
}