319 B
319 B
Nix package manager cheatsheet
Search for packages
nix search nixpkgs python
Add packages to current shell
# single package
nix shell nixpkgs#python3
# multiple packages
nix shell nixpkgs#python3 nixpkgs#nodejs
Run a command directly
nix run nixpkgs#python3 -- --version