From 51e0a62c03ad7f018f50fe23bda64f91b93e36dc Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Sat, 14 Feb 2026 10:19:45 +0100 Subject: [PATCH] Add comment into macOS configuration --- hosts/darwin/home/alistreaza.nix | 3 ++- hosts/darwin/system/os.nix | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/darwin/home/alistreaza.nix b/hosts/darwin/home/alistreaza.nix index 9197e36..926bdcf 100644 --- a/hosts/darwin/home/alistreaza.nix +++ b/hosts/darwin/home/alistreaza.nix @@ -16,14 +16,15 @@ home.shell.git.enable = true; home.shell.neovim.enable = true; + # Nix env deps home.env.nix.enable = true; + # Languages env deps home.env.r.enable = true; home.env.jdk.enable = true; home.env.rust.enable = true; home.env.python.enable = true; - # No Home Application Folders targets.darwin.linkApps.enable = false; targets.darwin.copyApps.enable = false; diff --git a/hosts/darwin/system/os.nix b/hosts/darwin/system/os.nix index 345fed0..765ac8b 100644 --- a/hosts/darwin/system/os.nix +++ b/hosts/darwin/system/os.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { system.primaryUser = "alistreaza"; nixpkgs.hostPlatform = "aarch64-darwin"; @@ -6,10 +6,10 @@ # Homebrew apps os.homebrew.iterm.enable = true; os.homebrew.zed.enable = true; - os.homebrew.jetbrain.enable = false; + os.homebrew.jetbrain.enable = true; os.homebrew.iina.enable = true; os.homebrew.zen.enable = true; os.homebrew.obsidian.enable = true; - os.homebrew.microsoft.enable = false; + os.homebrew.microsoft.enable = true; os.homebrew.keka.enable = true; }