Oleg Pykhalov writes:
>> (define channels >> (append >> (list >> (channel >> (name 'openvpn) > ^^^^^^^^ > > I'm not sure that's the issue, but could you try 'guix instead? > >> (url "https://git.savannah.gnu.org/git/guix.git") >> (commit "c5a2b70135c9830e9c3051ddf4a096f9a80eb952"))) >> %default-channels)) > ^^^^^^^^^^^^^^^^^ > > Don't need this in case you define 'guix channel above. Thank you for the suggestion. I get the same error if I change channels to be: ``` (define channels (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "c5a2b70135c9830e9c3051ddf4a096f9a80eb952")))) ```