Last active
June 23, 2021 21:44
-
-
Save marzocchi/eb3a6f3c67b58a7e7a735c72db716586 to your computer and use it in GitHub Desktop.
.config/nixpkgs/config.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - list packages | |
# nix-env -qaP | |
# | |
# - install packages in this file, or update packages after channel update: | |
# nix-env -iA nixpkgs.myPackages | |
# | |
# - update package list | |
# nix-channel --update | |
{ | |
allowUnfree = true; | |
allowUnsupportedSystem = true; | |
packageOverrides = pkgs: with pkgs; { | |
myPackages = pkgs.buildEnv { | |
name = "my-packages"; | |
paths = [ | |
age | |
apg | |
bash | |
bats | |
caddy | |
coreutils-full | |
ctop | |
curlFull | |
dialog | |
direnv | |
doctl | |
duplicacy | |
elixir | |
erlang | |
exercism | |
esptool | |
gitAndTools.tig | |
git-crypt | |
gitFull | |
go | |
gnu-cobol | |
gron | |
grpcui | |
grpcurl | |
graphviz-nox | |
gtop | |
httpie | |
hugo | |
iperf | |
jq | |
kubernetes-helm | |
mcfly | |
mtr | |
nmap | |
nnn | |
nodejs-12_x | |
portaudio | |
postgresql_11 | |
protobuf | |
pstree | |
opencv | |
openhantek6022 | |
pkg-config | |
pv | |
python39Full | |
python39Packages.setuptools | |
python39Packages.pip | |
python39Packages.virtualenv | |
ranger | |
reattach-to-user-namespace | |
rsync | |
shellcheck | |
speedtest-cli | |
telnet | |
terraform | |
tmux | |
tree | |
vegeta | |
vim | |
unixtools.watch | |
upx | |
yarn | |
youtube-dl | |
zsh | |
zsh-completions | |
zsh-autosuggestions | |
zsh-navigation-tools | |
weechat | |
wget | |
]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment