What are the different Nix channels on Replit?

If you don’t know already, I’m working on a .replit visual editor (Incoming Extension!) - and one of the fields you can edit in a .replit file is the Nix channel your Repl uses. However I’m not sure all the channels Replit supports, so I’d like to ask - which ones are there?

You can check out https://channels.nix.gsc.io/ for a list of Nix channels.

I believe Replit supports them all, you just need to reorder some of the formatting a bit.

1 Like
cd ~/.nix-defexpr/channels
for channel in nixpkgs-*
do echo ${channel#*-}
done
stable-21_11
stable-22_05
stable-22_11
unstable
4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.