Ihp install: stable or unstable nix-channel?

Hi all, just tried fresh install of ihp via nix, got about 20 warnings e.g.
trace: warning: cudaPackages.autoAddDriverRunpath is deprecated, use pkgs.autoAddDriverRunpath instead

I was wondering which nix-channel is recommended for ihp. I went with the stable channel out of habit. I couldn’t find the info after a quick search.

The IHP projects are typically locked to a specific nixpkgs version. The latest v1.3 accidentally didn’t have nixpkgs revision specified. This has been fixed on master already.

I suggest you just update to latest IHP master by updating line 3 of the project’s flake.nix like this:

# Old:
        ihp.url = "github:digitallyinduced/ihp/v1.3";
# Patched:
        ihp.url = "github:digitallyinduced/ihp";

After that a direnv allow should get you an IHP project without the warnings :slight_smile: