From 50b9e10f96370586af78b3a7c90c1249c9e69725 Mon Sep 17 00:00:00 2001 From: John Whitman Date: Mon, 13 Jan 2025 15:41:44 -0500 Subject: [PATCH] Adds homebrew app to darwin. --- machines/darwin.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machines/darwin.nix b/machines/darwin.nix index c4f951d..1ddaf34 100644 --- a/machines/darwin.nix +++ b/machines/darwin.nix @@ -7,6 +7,10 @@ vim ]; + # Homebrew packages (need to manually install homebrew first) + homebrew.enable = true; + homebrew.casks = [ "middleclick" ]; + services.nix-daemon.enable = true; security.pam.enableSudoTouchIdAuth = true;