Personal Nix setup

Add cmake to rn

Changed files
+2 -1
home
development
modules
base
+1 -1
home/development/react-native.nix
···
}
(helpers.mkIfDarwin {
-
home.packages = with pkgs; []
++ optionals cfg.react-native.cocoapods [ cocoapods ]
++ optionals cfg.react-native.fastlane [ fastlane ];
home.sessionVariables = {
···
}
(helpers.mkIfDarwin {
+
home.packages = with pkgs; [ cmake ]
++ optionals cfg.react-native.cocoapods [ cocoapods ]
++ optionals cfg.react-native.fastlane [ fastlane ];
home.sessionVariables = {
+1
modules/base/macos.nix
···
"com.apple.TimeMachine".DoNotOfferNewDisksForBackup = true;
"com.apple.ImageCapture".disableHotPlug = true;
"com.apple.gamed".Disabled = true;
};
};
};
···
"com.apple.TimeMachine".DoNotOfferNewDisksForBackup = true;
"com.apple.ImageCapture".disableHotPlug = true;
"com.apple.gamed".Disabled = true;
+
"com.apple.dt.XCode".IDEIndexDisable = 1;
};
};
};