From d9fae03553632587c3e13ef1ca4c207b7cdd083c Mon Sep 17 00:00:00 2001
From: Dmitriy Pleshevskiy <dmitriy@pleshevski.ru>
Date: Wed, 12 Mar 2025 21:17:41 +0300
Subject: [PATCH] host/macbook: add homebrew with chromium

---
 hosts/macbook-pro/configuration.nix | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/hosts/macbook-pro/configuration.nix b/hosts/macbook-pro/configuration.nix
index eb803b4..26f7f57 100644
--- a/hosts/macbook-pro/configuration.nix
+++ b/hosts/macbook-pro/configuration.nix
@@ -3,6 +3,8 @@
 {
   environment.systemPackages = with pkgs; [
     vim
+    git
+    git-crypt
   ];
 
   nix.settings.experimental-features = "nix-command flakes";
@@ -12,4 +14,12 @@
     serverAddress = "192.168.0.153";
     screenName = "macbook-pro";
   };
+
+  homebrew = {
+    enable = true;
+
+    casks = [
+      { name = "eloston-chromium"; }
+    ];
+  };
 }