summaryrefslogtreecommitdiff
path: root/modules/mac/homebrew/default.nix
blob: 5993a1a1868fa98f9908269db226c68694bb48b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  imports = [ ./nix-homebrew.nix ];

  homebrew = {
    enable = true;

    brews = [
      "swiftlint"
      "gpg"
      "pinentry-mac"
      "sudo-touchid"
      "appwrite"
      "graphaello"
    ];

    casks = [
      "alt-tab"
      "iina"
      "aerospace"
    ];
  };
}