summaryrefslogtreecommitdiff
path: root/hosts/nara/configuration.nix
blob: 24b8df493e53561e23c7cc57ecc97605bf73b4de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ inputs, pkgs, ... }:
{
  system.stateVersion = 5;

  environment.systemPackages = with pkgs; [
    nixd
    nixfmt-rfc-style
    nil
    just
  ];

  homebrew = {
    enable = true;

    brews = [
      "swiftlint"
      "gpg"
      "pinentry-mac"
    ];

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

  nix-homebrew = {
    enable = true;
    enableRosetta = true;
    user = "ebisu";
    mutableTaps = false;

    taps = with inputs; {
      "homebrew/homebrew-core" = homebrew-core;
      "homebrew/homebrew-cask" = homebrew-cask;
      "homebrew/homebrew-bundle" = homebrew-bundle;
      "nikitabobko/homebrew-tap" = nikitabobko-homebrew-tap;
    };
  };
}