SturmB

vars.yml

Jun 9th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.03 KB | None | 0 0
  1. ---
  2. # misc
  3. github_access_token: REDACTED
  4. new_user: "sturm"
  5.  
  6. # weareinteractive.users
  7. users:
  8.   - username: "{{ new_user }}"
  9.     name: Chris McGee
  10.     uid: 1000
  11.     password: REDACTED
  12.     authorized_keys:
  13.      - "{{ lookup('file', '~/.ssh/id_rsa.pub') }}"
  14.     home_create: yes
  15.     home_mode: "0750"
  16.     groups:
  17.      - admin
  18.     append: yes
  19.  
  20. # geerlingguy.git
  21.  
  22. # viasite-ansible.zsh
  23. zsh_user: "{{ new_user }}"
  24. zsh_antigen_bundles_extras:
  25.  - joel-porquet/zsh-dircolors-solarized
  26.   - romkatv/powerlevel10k
  27.   - zsh-users/zsh-completions
  28. zsh_autosuggestions_bind_key: "^U"
  29. zsh_antigen_theme: "romkatv/powerlevel10k powerlevel10k"
  30.  
  31. # geerlingguy.ruby
  32. ruby_install_gems:
  33.  - colorls
  34.   - lolcat
  35. ruby_install_gems_user: "{{ new_user }}"
  36.  
  37. # geerlingguy.dotfiles
  38. dotfiles_repo: "https://github.com/SturmB/dotfiles.git"
  39. dotfiles_repo_accept_hostkey: true
  40. dotfiles_repo_local_destination: "~/.dotfiles"
  41. dotfiles_files:
  42.  - .aliases
  43.   - .fzf.zsh
  44.   - .gitconfig
  45.   - .p10k.zsh
  46.   - .profile
  47.   - .tmux.conf
  48.   - .zshrc.local
Add Comment
Please, Sign In to add comment