-
Notifications
You must be signed in to change notification settings - Fork 5
Added new packages and cleaned up the var files for Ansible #34
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,110 +2,78 @@ | |
| # vars file for defilan-macos | ||
| go_version: 1.22.2 | ||
|
|
||
| # Shared packages that are common across all configurations | ||
| shared_packages: | ||
| homebrew_taps: | ||
| - aws/tap | ||
| - hashicorp/tap | ||
| - twilio/brew | ||
|
|
||
| homebrew_packages: | ||
| - aws-sam-cli | ||
| - awscli | ||
| - battery | ||
| - exercism | ||
| - git-extras | ||
| - go | ||
| - hashicorp/tap/packer | ||
| - hashicorp/tap/terraform | ||
| - kubectl | ||
| - molecule | ||
| - neovim | ||
| - node | ||
| - redis | ||
| - skaffold | ||
| - thefuck | ||
| - tmux | ||
| - twilio | ||
| - yarn | ||
|
|
||
| homebrew_cask_packages: | ||
| - 1password | ||
| - arc | ||
| - cursor | ||
| - docker | ||
| - font-hack-nerd-font | ||
| - ghostty | ||
| - istat-menus | ||
| - iterm2 | ||
| - jetbrains-toolbox | ||
| - obs | ||
| - postman | ||
| - rectangle | ||
| - switchresx | ||
| - visual-studio-code | ||
|
|
||
| apt_packages: | ||
| - git-extras | ||
| - golang-go | ||
| - neovim | ||
| - thefuck | ||
| - tmux | ||
| - zsh | ||
|
|
||
| # Configuration-specific package additions | ||
| config_packages: | ||
| lightweight: | ||
| homebrew_cask_packages: | ||
| - arc | ||
| - iterm2 | ||
| - 1password | ||
| - rectangle | ||
| - istat-menus | ||
| developer: | ||
| homebrew_taps: | ||
| - hashicorp/tap | ||
| - aws/tap | ||
| - twilio/brew | ||
| homebrew_packages: | ||
| - neovim | ||
| - tmux | ||
| - git-extras | ||
| - thefuck | ||
| - go | ||
| - kubectl | ||
| - skaffold | ||
| - awscli | ||
| - hashicorp/tap/terraform | ||
| - hashicorp/tap/packer | ||
| - aws-sam-cli | ||
| - node | ||
| - redis | ||
| - molecule | ||
| - battery | ||
| - twilio | ||
| - exercism | ||
| - yarn | ||
| homebrew_cask_packages: | ||
| - arc | ||
| - istat-menus | ||
| - iterm2 | ||
| - visual-studio-code | ||
| - 1password | ||
| - rectangle | ||
|
||
| - font-hack-nerd-font | ||
| - jetbrains-toolbox | ||
| - switchresx | ||
| - istat-menus | ||
| - docker | ||
| - postman | ||
| - obs | ||
| - cursor | ||
| apt_packages: | ||
| - neovim | ||
| - tmux | ||
| - git-extras | ||
| - thefuck | ||
| - zsh | ||
| - golang-go | ||
|
|
||
| developer: {} | ||
|
|
||
| home: | ||
| homebrew_taps: | ||
| - hashicorp/tap | ||
| - aws/tap | ||
| - twilio/brew | ||
| homebrew_packages: | ||
| - neovim | ||
| - tmux | ||
| - git-extras | ||
| - thefuck | ||
| - go | ||
| - kubectl | ||
| - skaffold | ||
| - awscli | ||
| - hashicorp/tap/terraform | ||
| - hashicorp/tap/packer | ||
| - aws-sam-cli | ||
| - node | ||
| - redis | ||
| - molecule | ||
| - battery | ||
| - twilio | ||
| - exercism | ||
| - yarn | ||
| homebrew_cask_packages: | ||
| - arc | ||
| - iterm2 | ||
| - visual-studio-code | ||
| - 1password | ||
| - rectangle | ||
| - font-hack-nerd-font | ||
| - jetbrains-toolbox | ||
| - nordvpn | ||
| - switchresx | ||
| - discord | ||
| - istat-menus | ||
| - signal | ||
| - docker | ||
| - postman | ||
| - gimp | ||
| - obs | ||
| - krisp | ||
| - microsoft-office | ||
| - cursor | ||
| apt_packages: | ||
| - neovim | ||
| - tmux | ||
| - git-extras | ||
| - thefuck | ||
| - zsh | ||
| - golang-go | ||
| - nordvpn | ||
| - signal | ||
|
|
||
| defilan_directories: | ||
| - ~/stuffy | ||
| - ~/stuffy/code | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line overwrites any existing 'config' variable with the default value if it's undefined. However, if 'config' is already defined (e.g., from environment or playbook vars), the 'default' filter won't apply and this task becomes redundant. Consider using 'when: config is not defined' condition or checking if the variable exists first.