diff options
Diffstat (limited to 'modules/mac/programs/homebrew')
| -rw-r--r-- | modules/mac/programs/homebrew/default.nix | 33 | ||||
| -rw-r--r-- | modules/mac/programs/homebrew/nix-homebrew.nix | 18 |
2 files changed, 51 insertions, 0 deletions
diff --git a/modules/mac/programs/homebrew/default.nix b/modules/mac/programs/homebrew/default.nix new file mode 100644 index 0000000..bbce658 --- /dev/null +++ b/modules/mac/programs/homebrew/default.nix @@ -0,0 +1,33 @@ +{ + imports = [ ./nix-homebrew.nix ]; + + homebrew = { + enable = true; + + brews = [ + "swiftlint" + "gpg" + "pinentry-mac" + "sudo-touchid" + "appwrite" + "graphaello" + "mas" + ]; + + casks = [ + "alt-tab" + "iina" + "aerospace" + ]; + + masApps = { + "Week Number" = 6502579523; + "Second Clock" = 6450279539; + "Day Progress" = 6450280202; + Speediness = 1596706466; + Gifski = 1351639930; + "HEIC Converter" = 1294126402; + Plash = 1494023538; + }; + }; +} diff --git a/modules/mac/programs/homebrew/nix-homebrew.nix b/modules/mac/programs/homebrew/nix-homebrew.nix new file mode 100644 index 0000000..487bbaa --- /dev/null +++ b/modules/mac/programs/homebrew/nix-homebrew.nix @@ -0,0 +1,18 @@ +{ 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; + "nerdsupremacist/homebrew-tap" = nerdsupremacist-homebrew-tap; + "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap; + }; + }; +} |