From 041be554643157100b802b4bc70208cb2c94b9d7 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 14 Dec 2024 22:14:52 -0800 Subject: nara: move configuration to modules --- modules/mac/homebrew/nix-homebrew.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/mac/homebrew/nix-homebrew.nix (limited to 'modules/mac/homebrew/nix-homebrew.nix') diff --git a/modules/mac/homebrew/nix-homebrew.nix b/modules/mac/homebrew/nix-homebrew.nix new file mode 100644 index 0000000..84684ce --- /dev/null +++ b/modules/mac/homebrew/nix-homebrew.nix @@ -0,0 +1,17 @@ +{ inputs, ... }: +{ + nix-homebrew = { + enable = true; + enableRosetta = true; + user = "ebisu"; + mutableTaps = false; + + taps = with inputs; { + "artginzburg/homebrew-tap" = artginzburg-homebrew-tap; + "homebrew/homebrew-core" = homebrew-core; + "homebrew/homebrew-cask" = homebrew-cask; + "homebrew/homebrew-bundle" = homebrew-bundle; + "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap; + }; + }; +} -- cgit v1.2.3