about summary refs log tree commit diff
path: root/hosts/mba/default.nix
blob: 89e703e08a74009935990b908369387cbe30a148 (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
{ pkgs, ... }:
{
  services.nix-daemon.enable = true;

  programs.zsh.enable = true;

  homebrew = {
    enable = true;
    onActivation.autoUpdate = true;

    taps = [
        "homebrew/cask-fonts"
    ];

    casks = [
      "docker"
      "emacs"
      "font-source-code-pro"
      "iterm2"
      "wireshark"
    ];
  };
}