summaryrefslogtreecommitdiff
path: root/modules/mac/homebrew
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-12-31 20:18:06 -0800
committerFuwn <[email protected]>2024-12-31 20:18:06 -0800
commit43bc891a00bed45afdc51083f1a68021e2bc4c95 (patch)
tree0cf65ced4f46241aa1e0abb43e0965de95bb65c8 /modules/mac/homebrew
parentnara: add bun (diff)
downloadnixos-config-43bc891a00bed45afdc51083f1a68021e2bc4c95.tar.xz
nixos-config-43bc891a00bed45afdc51083f1a68021e2bc4c95.zip
nara: overhaul
Diffstat (limited to 'modules/mac/homebrew')
-rw-r--r--modules/mac/homebrew/default.nix22
-rw-r--r--modules/mac/homebrew/nix-homebrew.nix18
2 files changed, 0 insertions, 40 deletions
diff --git a/modules/mac/homebrew/default.nix b/modules/mac/homebrew/default.nix
deleted file mode 100644
index 5993a1a..0000000
--- a/modules/mac/homebrew/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- imports = [ ./nix-homebrew.nix ];
-
- homebrew = {
- enable = true;
-
- brews = [
- "swiftlint"
- "gpg"
- "pinentry-mac"
- "sudo-touchid"
- "appwrite"
- "graphaello"
- ];
-
- casks = [
- "alt-tab"
- "iina"
- "aerospace"
- ];
- };
-}
diff --git a/modules/mac/homebrew/nix-homebrew.nix b/modules/mac/homebrew/nix-homebrew.nix
deleted file mode 100644
index 487bbaa..0000000
--- a/modules/mac/homebrew/nix-homebrew.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ 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;
- };
- };
-}