56 lines
1.7 KiB
YAML
56 lines
1.7 KiB
YAML
# vim: set filetype=yaml.ansible :
|
|
# variables used in ansible_role_package
|
|
---
|
|
default_flatpak_method: system
|
|
default_flatpak_remotes:
|
|
- name: flathub
|
|
url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
default_flatpak_remote_name: flathub
|
|
default_install_method: system
|
|
default_install_prefix: /usr/local
|
|
default_store_path: HOME/.cache/ansible_role_package
|
|
default_path_appimage: /usr/local/appimage
|
|
default_path_archive: /usr/local/archive
|
|
default_path_bin: /usr/local/bin
|
|
default_path_cargo: /usr/local/cargo
|
|
default_path_go: /usr/local/go
|
|
default_path_pipx: /usr/local/pipx
|
|
default_path_git: /usr/local/git
|
|
packages: [] # list of packages to install
|
|
extra_packages: [] # list of extra packages to add to pkg_sys
|
|
|
|
# Path suffixes for installation types. Prefixed by `default_install_prefix`
|
|
directory_appimage: appimage
|
|
directory_archive: archive
|
|
directory_bin: bin
|
|
directory_cargo: cargo
|
|
directory_go: go
|
|
directory_pipx: pipx
|
|
directory_git: git
|
|
|
|
default_clean_source: false
|
|
|
|
## Extra config that usually will not need to be changed
|
|
hyprgitbase: https://github.com/hyprwm
|
|
|
|
_pkgconfig_force_rebuild: false
|
|
|
|
# neovim configuration
|
|
_pkgversion_neovim: master
|
|
_gitbranch_neovim: master
|
|
|
|
# Empty variables that need to exist
|
|
flatpak_remotes: null # flatpak remotes to add instead of default
|
|
flatpak_remote_name: null # the source of flatpak installations
|
|
flatpak_method: null # the method to use when installing flatpak
|
|
install_method: null # the way to install packages (system, source, etc)
|
|
install_prefix: null # the path prefix to install files
|
|
store_path: null # the path to store archives, git repos and appimages, etc.
|
|
path_appimage: null
|
|
path_archive: null
|
|
path_bin: null
|
|
path_cargo: null
|
|
path_go: null
|
|
path_pipx: null
|
|
use_become: true
|