Supported architectures:
aarch64-linuxx86_64-linux(Linux and possibly WSL2 on Windows)aarch64-darwin(macOS on Apple Silicon)x86_64-darwin(macOS on Intel)
You will need a working installation of Nix which can be obtained here (few additional options available).
An optional step is to enable the binary cache for this overlay:
nix-shell -p cachix --run "cachix use epic-eic"A quick way to start using the packages is to clone the repository and invoke a nix-shell, which will start a shell with environment that includes all the EIC packages:
git clone https://github.com/veprbl/epic-nix.git
cd epic-nix
nix-shellDepending on the version of Nix that you have, you may have to first enable the following features:
echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.confSimilar to the nix-shell approach above, one can invoke the environment without cloning the repository:
nix develop github:veprbl/epic-nixor with cloning:
git clone https://github.com/veprbl/epic-nix.git
cd epic-nix
nix develop