diff --git a/README.md b/README.md index 690091d..891a4d4 100644 --- a/README.md +++ b/README.md @@ -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