Open HugoHeneault opened 1 week ago
Can you run
ls -l /opt/homebrew
Is this owner by your user? Here is the dependency we use, nix-homebrew, I know they "migrate" existing configurations but maybe something went wrong.
You could also try to set this option to false
(I think maybe this is default now, but something you could try regardless)
homebrew = {
enable = true;
global.lockfiles = false;
};
Otherwise I'm not exactly sure as I personally don't use taps. You can also just keep homebrew out of the configuration entirely, and have a traditional Brewfile
sit next to this configuration. Just something to consider. This would enable just removing those lines from the home-manager.nix
configuration file, something to unblock you regardless.
Hi there,
First thanks for that great repo which was a nice introduction to nix to me.
I'm trying to add taps to my setup. I read #66, and I already did as stated as a solution:
But when
nix run .#build-switch
It returns
Running
brew tap leoafarias/fvm
returns the same error message :I can't figure out what's wrong with my setup. Thank you for your help 🙏