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"; }
+    ];
+  };
 }