Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 593 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 593 Bytes

This repository contains a list of personal Nix recipes.

How to use?

The path/to/my-nixpkgs in all the following commands can be given using different methods:

List available packages using:

nix-env -qaP -f /path/to/my-nixpkgs

Install a package using:

nix-env -f /path/to/my-nixpkgs -iA packageName

You can also enter a dev environment for a certain package with:

nix-shell /path/to/my-nixpkgs -A packageName