{"id":16251170,"url":"https://github.com/alexnabokikh/mac-playbook","last_synced_at":"2025-03-19T20:30:27.504Z","repository":{"id":37030127,"uuid":"501994512","full_name":"AlexNabokikh/mac-playbook","owner":"AlexNabokikh","description":"MacOS setup and configuration via Ansible. ","archived":false,"fork":false,"pushed_at":"2023-08-11T17:30:52.000Z","size":166,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T10:21:29.824Z","etag":null,"topics":["ansible","homebrew","macos","osx","playbook"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlexNabokikh.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-10T10:09:27.000Z","updated_at":"2025-01-05T22:51:58.000Z","dependencies_parsed_at":"2024-10-27T21:30:37.607Z","dependency_job_id":"b485bd49-aee4-4e6f-8378-49f6b10ab13d","html_url":"https://github.com/AlexNabokikh/mac-playbook","commit_stats":{"total_commits":96,"total_committers":3,"mean_commits":32.0,"dds":"0.39583333333333337","last_synced_commit":"d637f18dc8a9df8c811e16bb957ea19dc5fc86d2"},"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexNabokikh%2Fmac-playbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexNabokikh%2Fmac-playbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexNabokikh%2Fmac-playbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexNabokikh%2Fmac-playbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexNabokikh","download_url":"https://codeload.github.com/AlexNabokikh/mac-playbook/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244501085,"owners_count":20462793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","homebrew","macos","osx","playbook"],"created_at":"2024-10-10T15:09:11.564Z","updated_at":"2025-03-19T20:30:27.213Z","avatar_url":"https://github.com/AlexNabokikh.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# macOS Ansible Playbook\n\n![badge-gh-tests]\n![badge-gh-release]\n![badge-license]\n\nThis playbook installs and configures most of the software I use on my OSX machine for software development.\n\n## Contents\n\n- [Playbook capabilities](#playbook-capabilities)\n- [Installation](#installation)\n- [Running a specific set of tagged tasks](#running-a-specific-set-of-tagged-tasks)\n- [Overriding Defaults](#overriding-defaults)\n\n## Playbook capabilities\n\n\u003e **NOTE:** The Playbook is fully configurable. You can skip or reconfigure any task by [Overriding Defaults](#overriding-defaults).\n\n- **Software**\n  - Install software and packages selected by the user via [Homebrew](https://github.com/Homebrew/brew).\n  - Install App Store software selected by the user via [MAS](https://github.com/mas-cli/mas).\n  - Install PIP (Python) packages selected by the user.\n  - Install NPM (JS) packages selected by the user.\n- **Dotfiles**\n  - Install a set of dotfiles from a given Git repository.\n- **System Settings**\n  - **Fonts**\n    - Install chosen custom fonts.\n- **User Settings**\n  - **Directories**\n    - Create custom user directories.\n  - **Dock**\n    - Arrange items in your macOS Dock as you want.\n  - **Sudoers**\n    - Configure custom sudoers.\n  - **Zsh**\n    - Install and configure [ohmyzsh](https://github.com/ohmyzsh/ohmyzsh).\n    - Install custom OMZ plugins and themes.\n  - **TMUX**\n    - Install and configure tmux with TPM (plugin manager).\n  - **User Script**\n    - Execute arbitrary user script.\n\n## Installation\n\n1. [Install Ansible](https://docs.ansible.com/ansible/latest/installation_guide/index.html):\n\n   1. Upgrade Pip: `python -m pip install --upgrade pip`\n   2. Install Ansible: `python -m pip install --user ansible`\n\n2. Clone or download this repository to your local drive.\n3. Run `ansible-galaxy install -r requirements.yml` inside this directory to install required Ansible collections.\n4. Run `ansible-playbook main.yml` inside this directory.\n\n### Running a specific set of tagged tasks\n\nYou can filter which part of the provisioning process to run by specifying a set of tags using `ansible-playbook` 's `--tags` flag. The tags available are `dotfiles`, `homebrew`, `mas`, `dock`, `sudoers`, `fonts`, `directories`, etc...\n\n```sh\nansible-playbook main.yml -K --tags \"dotfiles, homebrew\"\n```\n\n## Overriding Defaults\n\nYou can override any of the defaults configured in `example.config.yml` by creating a `config.yml` file and setting the overrides in that file.\n\n## Author\n\nThis project was created by [Alexander Nabokikh](https://www.linkedin.com/in/nabokih/) (originally forked from Jeff Geerling's repository: [geerlingguy/mac-dev-playbook](https://github.com/geerlingguy/mac-dev-playbook)).\n\n## License\n\nThis software is available under the following licenses:\n\n- **[MIT](https://github.com/AlexNabokikh/mac-playbook/blob/master/LICENSE)**\n\n[badge-gh-tests]: https://github.com/AlexNabokikh/mac-playbook/actions/workflows/test.yml/badge.svg\n[badge-gh-release]: https://github.com/AlexNabokikh/mac-playbook/actions/workflows/release.yaml/badge.svg\n[badge-license]: https://img.shields.io/badge/License-MIT-informational\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexnabokikh%2Fmac-playbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexnabokikh%2Fmac-playbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexnabokikh%2Fmac-playbook/lists"}