liminalOS/modules/darwin/homebrew.nix

15 lines
266 B
Nix
Raw Normal View History

2024-08-16 06:42:35 -07:00
{inputs, ...}: {
2024-08-05 02:51:43 -07:00
nix-homebrew = {
enable = true;
enableRosetta = true;
user = "youwen";
taps = {
"homebrew/homebrew-core" = inputs.homebrew-core;
"homebrew/homebrew-cask" = inputs.homebrew-cask;
};
mutableTaps = false;
};
}