diff options
Diffstat (limited to 'hosts/mba')
-rw-r--r-- | hosts/mba/default.nix | 11 |
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; |