Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cpm/adding stuffy more #28

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions defilan-macos/roles/defilan-macos/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@
loop: "{{ config_packages[config].homebrew_cask_packages }}"
when: config_packages[config].homebrew_cask_packages is defined


- name: Create stuffy directory
file:
path: "{{ ansible_env.HOME }}/stuffy"
state: directory

- name: Create subdirectories
file:
path: "{{ ansible_env.HOME }}/stuffy/{{ item }}"
state: directory
loop:
- code
- playground

- name: Installing oh-my-zsh
git:
repo: "https://github.com/robbyrussell/oh-my-zsh.git"
Expand Down
5 changes: 3 additions & 2 deletions defilan-macos/roles/defilan-macos/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ config_packages:
- docker
- postman
- obs
- font-dejavu-sans-mono-nerd-font
home:
homebrew_taps:
- hashicorp/tap
Expand Down Expand Up @@ -90,9 +91,9 @@ config_packages:
- gimp
- obs
- krisp
- microsoft-office
- font-dejavu-sans-mono-nerd-font

defilan_directories:
- ~/stuffy
- ~/stuffy/code
- ~/stuffy/playground
- ~/stuffy/playground
4 changes: 2 additions & 2 deletions git/gitconfig.symlink
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

# gitconfig
[user]
name = Christopher P. Maher
email = [email protected]
name =
email =
[github]
user =
[init]
Expand Down