You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to reference the repo I'm getting following error:
fetching Git repository '/nix/store/p04jlkgwqm5kiwphm12zbvb485xzpcd8-source'fatal: '/nix/store/p04jlkgwqm5kiwphm12zbvb485xzpcd8-source' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I believe this has to do with the code in default.nix:
NixOS 21.11 still uses Nix 2.3 by default.
When trying to reference the repo I'm getting following error:
I believe this has to do with the code in
default.nix
:Instead of
src = builtins.fetchGit ./.;
it should besrc = ./.;
Or even better use the new recommendations from https://github.com/edolstra/flake-compat
The text was updated successfully, but these errors were encountered: