liminalOS/modules/darwin/homebrew.nix

15 lines
268 B
Nix
Raw Normal View History

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