32 lines
986 B
YAML
32 lines
986 B
YAML
# vim: set filetype=yaml.ansible :
|
|
# variables used in ansible_role_package
|
|
---
|
|
debug: false
|
|
use_local: true
|
|
prefer_method: system
|
|
packages: [] # list of packages to install
|
|
|
|
defaults:
|
|
path:
|
|
prefix: "/usr/local"
|
|
suffix:
|
|
appimage: "/appimage" # keep appimages here
|
|
archive: "/archive" # extract archives here
|
|
bin: "/bin" # installation prefix. Binaries are placed in `{{ install }}/bin`
|
|
cargo: "/cargo" # cargo install location
|
|
go: "/go" # GOROOT
|
|
pipx: "/pipx" # where pipx environments are installed (venvs). They are symlinked to `bin`
|
|
|
|
# paths resolve to either $HOME/.local as the prefix, or /usr/local
|
|
# all created paths are named:
|
|
# - paths.appimage: $PREFIX/appimage
|
|
# - paths.archive: $PREFIX/archive
|
|
# - paths.bin: $PREFIX/bin
|
|
# - paths.cargo: $PREFIX/cargo
|
|
# - paths.go: $PREFIX/go
|
|
# - paths.pipx: $PREFIX/pipx
|
|
|
|
## Extra config that usually will not need to be changed
|
|
hyprland_clean: false
|
|
hyprgitbase: https://github.com/hyprwm
|