about summary refs log tree commit diff
path: root/darwin/delta/configuration.nix
blob: ed87a429b03b2a1aa74679e1738ad0b2542c6bd4 (plain)
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
42
43
44
45
46
{ pkgs, ... }:

{
  homebrew = {
    enable = true;

    taps = [
      "dwarvesf/homebrew-tap"
    ];

    brews = [
      # Thunderbird requires GPGME in 'standard locations'
      "gpgme"
    ];

    casks = [
      "bentobox"
      "bitwarden"
      "jetbrains-toolbox"
      "jordanbaird-ice"
      "karabiner-elements"
      "kicad" # XXX: Nix one marked as broken on darwin
      "little-snitch"
      "macfuse"
      "micro-snitch"
      "monarch"
      "notchnook"
      "openmtp"
      "orbstack"
      "raycast"
      "spotify"
      "tailscale"
      "transmission"
      "transmission"
      "vimmotion"
      "yubico-yubikey-manager"
    ];
  };

  # Necessary for using flakes on this system.
  nix.settings.experimental-features = "nix-command flakes";

  # $ darwin-rebuild changelog
  system.stateVersion = 5;
  nixpkgs.hostPlatform = "aarch64-darwin";
}