.config/nixpkgs/config.nix
# - save this to ~/.config/nixpkgs/config.nix | |
# | |
# - find the package you want to install by regexp, then add the name to the list | |
# nix-env -qaP ".*package.*" | |
# | |
# - install packages in this file, or update packages after channel update: | |
# nix-env -iA nixpkgs.myPackages | |
# | |
# - channel update (update list of installable package) | |
# nix-channel --update | |
{ | |
allowUnfree = true; | |
allowUnsupportedSystem = true; | |
packageOverrides = pkgs: with pkgs; { | |
myPackages = pkgs.buildEnv { | |
name = "my-packages"; | |
paths = [ | |
age | |
apg | |
coreutils-full | |
ctop | |
curlFull | |
dialog | |
direnv | |
doctl | |
gitAndTools.tig | |
git-crypt | |
gitFull | |
go | |
gron | |
grpcui | |
grpcurl | |
graphviz-nox | |
htop | |
httpie | |
jq | |
nmap | |
nnn | |
nodejs-12_x | |
postgresql_11 | |
protobuf | |
pstree | |
pv | |
python38Full | |
python38Packages.pip | |
ranger | |
shellcheck | |
speedtest-cli | |
stack | |
terraform | |
tmux | |
vegeta | |
vim | |
viu | |
unixtools.watch | |
yarn | |
zsh | |
zsh-completions | |
zsh-autosuggestions | |
zsh-navigation-tools | |
]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment