about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-08 09:05:20 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-08 09:05:20 -0800
commitd9601c13c3ba2437294985102511062a10608f80 (patch)
treead2d66ff3d55fb8d165d0a99e430a3e7bf4704cb
parentdelete configuration for old machines (diff)
downloadworld-d9601c13c3ba2437294985102511062a10608f80.tar.gz
install kind / configure the dock
-rw-r--r--hosts/mba/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/mba/default.nix b/hosts/mba/default.nix
index 06d8529..4110f41 100644
--- a/hosts/mba/default.nix
+++ b/hosts/mba/default.nix
@@ -19,7 +19,8 @@
     onActivation.autoUpdate = true;
 
     brews = [
-      "aspell"
+      "aspell" # spelling
+      "kind" # to run local k8s cluster
     ];
 
     taps = [
@@ -32,8 +33,7 @@
       "element"
       "emacs"
       "font-source-code-pro"
-      # https://github.com/githubnext/monaspace
-      "font-monaspace"
+      "font-monaspace" # https://github.com/githubnext/monaspace
       "iterm2"
       "wireshark"
       "zoom"
@@ -42,6 +42,11 @@
 
   users.users.fcuny.home = "/Users/fcuny";
 
+  system.defaults.dock.autohide = true;
+  system.defaults.dock.orientation = "left";
+  system.defaults.dock.showhidden = false;
+  system.defaults.finder.AppleShowAllExtensions = true;
+
   home-manager.useGlobalPkgs = true;
   home-manager.useUserPackages = true;
   home-manager.users.fcuny = import ../../home/profiles/darwin.nix;