about summary refs log tree commit diff
path: root/nix/machines/macbook-air-m2.nix
blob: 9b0265a0a08ad2310edde6ef39396a42bbc8ac95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }: {
  imports = [ ./darwin-shared.nix ];

  system.stateVersion = 5;

  networking.hostName = "mba-fcuny";

  programs.fish.enable = true;
  environment.shells = [ pkgs.fish ];

  # brew packages I only want to get installed on this machine
  homebrew.casks = [ "zoom" ];
}