A few weeks ago, I installed the nix package manager on my computer (macOS 10.12.6 Sierra).
I want to update the mylocal nixpkgs collection to synchronize it with any upstream updates in the channel. I understand that this can be achieved by doing: nix-channel --update
. However, when I run this, I get the following output:
unpacking channels...
created 0 symlinks in user environment
Suggestion that the expressions have not been updated in the channels that my system subscribes to. If I run nix-channel --list
, I do not see any of the listed channels. What channel is my system on? and should I expect it to be listed?
Is it that it nix-channel --update
will usually make local changes only if I change the channels I subscribe to, or if I subscribe to an unstable channel?
source
share