add homebrew-bundle to example

#32 #9
This commit is contained in:
Drewry Pope
2024-10-22 18:59:55 -05:00
committed by GitHub
parent 86af3bb8f7
commit 5cba86fce2
+6 -1
View File
@@ -22,6 +22,10 @@ Add the following to your Flake inputs:
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-bundle = {
url = "github:homebrew/homebrew-bundle";
flake = false;
};
# (...)
};
@@ -34,7 +38,7 @@ If you haven't installed Homebrew before, use the following configuration:
```nix
{
output = { self, nixpkgs, darwin, nix-homebrew, homebrew-core, homebrew-cask, ... }: {
output = { self, nixpkgs, darwin, nix-homebrew, homebrew-core, homebrew-cask, homebrew-bundle, ... }: {
darwinConfigurations.macbook = {
# (...)
modules = [
@@ -54,6 +58,7 @@ If you haven't installed Homebrew before, use the following configuration:
taps = {
"homebrew/homebrew-core" = homebrew-core;
"homebrew/homebrew-cask" = homebrew-cask;
"homebrew/homebrew-bundle" = homebrew-bundle;
};
# Optional: Enable fully-declarative tap management