From 643b722eb4387840a782e19b164f0c549bb86f3f Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 24 Jan 2024 11:02:06 -0500 Subject: [PATCH] get system ready for m3 macbook --- hosts/lookingglass/default.nix | 2 +- modules/darwin/homebrew.nix | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/hosts/lookingglass/default.nix b/hosts/lookingglass/default.nix index ea612d6..86cae4f 100644 --- a/hosts/lookingglass/default.nix +++ b/hosts/lookingglass/default.nix @@ -4,7 +4,7 @@ { inputs, globals, overlays, ... }: inputs.darwin.lib.darwinSystem { - system = "x86_64-darwin"; + system = "aarch64-darwin"; specialArgs = { }; modules = [ ../../modules/common diff --git a/modules/darwin/homebrew.nix b/modules/darwin/homebrew.nix index 19b07e3..7b7059c 100644 --- a/modules/darwin/homebrew.nix +++ b/modules/darwin/homebrew.nix @@ -1,4 +1,4 @@ -{ config, pkgs, lib, ... }: { +{ pkgs, lib, ... }: { # Homebrew - Mac-specific packages that aren't in Nix config = lib.mkIf pkgs.stdenv.isDarwin { @@ -33,17 +33,17 @@ "openjdk" # Required by Apache Directory Studio ]; casks = [ - "1password" # 1Password packaging on Nix is broken for macOS + # "1password" # 1Password packaging on Nix is broken for macOS "apache-directory-studio" # Packaging on Nix is not available for macOS "gitify" # Git notifications in menu bar "keybase" # GUI on Nix not available for macOS - "logitech-g-hub" # Mouse and keyboard management + # "logitech-g-hub" # Mouse and keyboard management "logitune" # Logitech webcam firmware "meetingbar" # Show meetings in menu bar - "obsidian" # Obsidian packaging on Nix is not available for macOS + # "obsidian" # Obsidian packaging on Nix is not available for macOS "scroll-reverser" # Different scroll style for mouse vs. trackpad - "steam" # Not packaged for Nix - "epic-games" # Not packaged for Nix + # "steam" # Not packaged for Nix + # "epic-games" # Not packaged for Nix ]; };