From 6d0e1f135769c92c972e39a07eac468065611e08 Mon Sep 17 00:00:00 2001 From: matthieu Date: Tue, 4 Mar 2025 15:12:58 -0500 Subject: [PATCH] Add roles/common/vars/main.yml --- roles/common/vars/main.yml | 57 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 roles/common/vars/main.yml diff --git a/roles/common/vars/main.yml b/roles/common/vars/main.yml new file mode 100644 index 0000000..2fb1305 --- /dev/null +++ b/roles/common/vars/main.yml @@ -0,0 +1,57 @@ +### Playbook Configuration Variables +# You may modify the following variables to customize the playbook to your +# specific needs, however do not remove any variables, they are all required +# for the playbook to function. + +## User info +username: matt + +## Task Configuration +setup_zsh: False + +## Dotfiles +## Please make sure to update +pull_dotfiles: True + +dotfiles: + url: https://git.royfortin.ca/matthieu/stow_dotfiles + destination: .dotfiles + rcup_flags: -fx README.md + +## Desktop +install_kde: True + +## App Preferences +## =========================== +# Web Browser +# Value can be: vivaldi, firefox, brave, or chromium +browser: vivaldi + +## When set to True, will install elinks and w3m +install_terminal_browsers: True + +## Installs LibreOffice Fresh when True +install_office: True + +## Spacevim? You know you need it +install_spacevim: True +## =========================== + +## Console-based email client +install_aerc: True + +## AUR vars +## =========================== +use_aur: True + +aur: + dir: aur + packages: + - yay + - downgrade + - zplug + - miller + - myrepos + - ctmg + - spiped +## =========================== \ No newline at end of file