removed bool check

Signed-off-by: Matthew Stobbs <matthew.stobbs@ucalgary.ca>
This commit is contained in:
Matthew Stobbs
2025-05-12 14:24:27 -06:00
parent d0fbd457bb
commit ceabce67e4
84 changed files with 588 additions and 1107 deletions

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add cbfmt
when:
- cbfmt_configured is undefined
block:
- name: Load cbfmt configuration
ansible.builtin.include_tasks:
file: config/cbfmt.yml
@@ -11,7 +7,3 @@
- name: Append cbfmt to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + cbfmt.pkgs }}"
- name: Set cbfmt_configured
ansible.builtin.set_fact:
cbfmt_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add cmake-format
when:
- cmake_format_configured is undefined
block:
- name: Load cmake-format configuration
ansible.builtin.include_tasks:
file: config/cmake-format.yml
@@ -11,7 +7,3 @@
- name: Append cmake-format to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + cmake_format.pkgs }}"
- name: Set cmake-format_configured
ansible.builtin.set_fact:
cmake_format_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Append alacritty
when:
- alacritty_configured is undefined
block:
- name: Load alacritty configuration
ansible.builtin.include_tasks:

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add ansible_lint
when:
- ansible_lint_configured is undefined
block:
- name: Append ansible-lint to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['ansible-lint'] }}"
- name: Set ansible_lint_configured
ansible.builtin.set_fact:
ansible_lint_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add bat
when:
- bat_configured is undefined
block:
- name: Append bat to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['bat'] }}"
- name: Set bat_configured
ansible.builtin.set_fact:
bat_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add blender
when:
- blender_configured is undefined
block:
- name: Append blender to pkg_sys
when:
- ansible_system == 'Linux'
@@ -15,7 +11,3 @@
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + ['blender'] }}"
- name: Set bitwarden_configured
ansible.builtin.set_fact:
bitwarden_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add broot
when:
- broot_configured is undefined
block:
- name: Load broot config
ansible.builtin.include_tasks:

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add btop
when:
- btop_configured is undefined
block:
- name: Append btop to pkg_ssys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['btop'] }}"
- name: Set broot_configured
ansible.builtin.set_fact:
broot_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add carapace
when:
- carapace_configured is undefined
block:
- name: Load carapace config
ansible.builtin.include_tasks:
file: config/carapace.yml
@@ -33,7 +29,3 @@
- name: Append carapace to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + carapace.pkgs }}"
- name: Set carapace_configured
ansible.builtin.set_fact:
carapace_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add choose
when:
- choose_configured is undefined
block:
- name: Load choose config
ansible.builtin.include_tasks:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add clangd
when:
- clangd_configured is undefined
block:
- name: Load clangd config
ansible.builtin.include_tasks:
file: config/clangd.yml
@@ -11,7 +7,3 @@
- name: Append clangd to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + clangd.pkgs }}"
- name: Set clangd_configured
ansible.builtin.set_fact:
clangd_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add cmake
when:
- cmake_configured is undefined
block:
- name: Append cmake to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['cmake'] }}"
- name: Set cmake_configured
ansible.builtin.set_fact:
cmake_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add cockpit
when:
- cockpit_configured is undefined
block:
- name: Load cockpit configuration
ansible.builtin.include_tasks:
file: config/cockpit.yml
@@ -11,7 +7,3 @@
- name: Append cockpit to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + cockpit.pkgs }}"
- name: Set cockpit_configured
ansible.builtin.set_fact:
cockpit_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add consul
when:
- consul_configured is undefined
block:
- name: Load consul config
ansible.builtin.include_tasks:

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add direnv
when:
- direnv_configured is undefined
block:
- name: Append direnv to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['direnv'] }}"
- name: Set direnv_configured
ansible.builtin.set_fact:
direnv_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add dust
when:
- dust_configured is undefined
block:
- name: Append du-dust to pkg_cargo
when:

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add editorconfig
when:
- editorconfig_configured is undefined
block:
- name: Append editorconfig to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['editorconfig'] }}"
- name: Set editorconfig_configured
ansible.builtin.set_fact:
editorconfig_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add fd
when:
- fd_configured is undefined
block:
- name: Load fd config
ansible.builtin.include_tasks:
file: config/fd.yml
@@ -11,7 +7,3 @@
- name: Append fd to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + fd.pkgs }}"
- name: Set fd_configured
ansible.builtin.set_fact:
fd_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add firefox
when:
- firefox_configured is undefined
block:
- name: Append firefox to pkg_sys
when:
- ansible_system == 'Linux'
@@ -15,7 +11,3 @@
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + ['firefox'] }}"
- name: Set firefox_configured
ansible.builtin.set_fact:
firefox_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add firewalld
when:
- firewalld_configured is undefined
block:
- name: Append firewalld to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['firewalld'] }}"
- name: Set firewalld_configured
ansible.builtin.set_fact:
firewalld_configured: true

View File

@@ -1,15 +1,7 @@
# vim: set filetype=yaml.ansible :
---
- name: Add flatpak
when:
- flatpak_configured is undefined
block:
- name: Append flatpak to pkg_sys
when:
- ansible_system == 'Linux'
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['flatpak'] }}"
- name: Set flatpak_configured
ansible.builtin.set_fact:
flatpak_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add cmake
when:
- cmake_configured is undefined
block:
- name: Append fzf to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['fzf'] }}"
- name: Set cmake_configured
ansible.builtin.set_fact:
cmake_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add ghostty
when:
- ghostty_configured is undefined
block:
- name: Load ghostty config
ansible.builtin.include_tasks:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add git
when:
- git_configured is undefined
block:
- name: Load git config
ansible.builtin.include_tasks:
file: config/git.yml
@@ -11,7 +7,3 @@
- name: Append git to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + git.pkgs }}"
- name: Set git_configured
ansible.builtin.set_fact:
git_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add go
when:
- go_configured is undefined
block:
- name: Load go config
ansible.builtin.include_tasks:
file: config/go.yml
@@ -18,7 +14,3 @@
- go.method != 'archive'
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['go'] }}"
- name: Set go_configured
ansible.builtin.set_fact:
go_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add gping
when:
- gping_configured is undefined
block:
- name: Append gping to pkg_sys
when:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add greetd
when:
- greetd_configured is undefined
block:
- name: Load greetd config
ansible.builtin.include_tasks:
file: config/greetd.yml
@@ -11,7 +7,3 @@
- name: Append greetd to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + greetd.pkgs }}"
- name: Set greetd_configured
ansible.builtin.set_fact:
greetd_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hugo
when:
- hugo_configured is undefined
block:
- name: Append hugo to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['hugo'] }}"
- name: Set hugo_configured
ansible.builtin.set_fact:
hugo_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyperfine
when:
- hyperfine_configured is undefined
block:
- name: Append hyperfine to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['hyperfine'] }}"
- name: Set hyperfine_configured
ansible.builtin.set_fact:
hyperfine_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprcursor
when:
- hyprcursor_configured is undefined
block:
- name: Load hyprcursor config
ansible.builtin.include_tasks:
file: config/hyprcursor.yml
@@ -15,7 +11,3 @@
- name: Append hyprcursor to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprcursor'] }}"
- name: Set hyprcursor_configured
ansible.builtin.set_fact:
hyprcursor_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprgraphics
when:
- hyprgraphics_configured is undefined
block:
- name: Load hyprgraphics config
ansible.builtin.include_tasks:
file: config/hyprgraphics.yml
@@ -15,7 +11,3 @@
- name: Append hyprcursor to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprgraphics'] }}"
- name: Set hyprgraphics_configured
ansible.builtin.set_fact:
hyprgraphics_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hypridle
when:
- hypridle_configured is undefined
block:
- name: Load hypridle config
ansible.builtin.include_tasks:
file: config/hypridle.yml
@@ -24,7 +20,3 @@
- name: Append hypridle to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hypridle'] }}"
- name: Set hypridle_configured
ansible.builtin.set_fact:
hypridle_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprland
when:
- hyprland_configured is undefined
block:
- name: Load hyprland config
ansible.builtin.include_tasks:
file: config/hyprland.yml
@@ -24,7 +20,3 @@
- name: Append hyprland to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprland'] }}"
- name: Set hyprland_configured
ansible.builtin.set_fact:
hyprland_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprland-protocols
when:
- hyprland_protcols_configured is undefined
block:
- name: Load hyprland-protocols config
ansible.builtin.include_tasks:
file: config/hyprland_protocols.yml
@@ -15,7 +11,3 @@
- name: Append hyprland-protocols to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprland_protocols'] }}"
- name: Set hyprland_protcols_configured
ansible.builtin.set_fact:
hyprland_protcols_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprland_qt_support
when:
- hyprland_qt_support_configured is undefined
block:
- name: Load hyprland_qt_support config
ansible.builtin.include_tasks:
file: config/hyprland_qt_support.yml
@@ -24,7 +20,3 @@
- name: Append hyprland_qt_support to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprland_qt_support'] }}"
- name: Set hyprland_qt_support_configured
ansible.builtin.set_fact:
hyprland_qt_support_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprland_qtutils
when:
- hyprland_qtutils_configured is undefined
block:
- name: Load hyprland_qtutils config
ansible.builtin.include_tasks:
file: config/hyprland_qtutils.yml
@@ -24,7 +20,3 @@
- name: Append hyprland_qtutils to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprland_qtutils'] }}"
- name: Set hyprland_qtutils_configured
ansible.builtin.set_fact:
hyprland_qtutils_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprlang
when:
- hyprlang_configured is undefined
block:
- name: Load hyprlang config
ansible.builtin.include_tasks:
file: config/hyprlang.yml
@@ -24,7 +20,3 @@
- name: Append hyprlang to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprlang'] }}"
- name: Set hyprlang_configured
ansible.builtin.set_fact:
hyprlang_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprlock
when:
- hyprlock_configured is undefined
block:
- name: Load hyprlock config
ansible.builtin.include_tasks:
file: config/hyprlock.yml
@@ -24,7 +20,3 @@
- name: Append hyprlock to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprlock'] }}"
- name: Set hyprlock_configured
ansible.builtin.set_fact:
hyprlock_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprpaper
when:
- hyprpaper_configured is undefined
block:
- name: Load hyprpaper config
ansible.builtin.include_tasks:
file: config/hyprpaper.yml
@@ -24,7 +20,3 @@
- name: Append hyprpaper to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprpaper'] }}"
- name: Set hyprpaper_configured
ansible.builtin.set_fact:
hyprpaper_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprpicker
when:
- hyprpicker_configured is undefined
block:
- name: Load hyprpicker config
ansible.builtin.include_tasks:
file: config/hyprpicker.yml
@@ -24,7 +20,3 @@
- name: Append hyprpicker to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprpicker'] }}"
- name: Set hyprpicker_configured
ansible.builtin.set_fact:
hyprpicker_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprpolkitagent
when:
- hyprpolkitagent_configured is undefined
block:
- name: Load hyprpolkitagent config
ansible.builtin.include_tasks:
file: config/hyprpolkitagent.yml
@@ -15,7 +11,3 @@
- name: Append hyprpolkitagent to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprpolkitagent'] }}"
- name: Set hyprpolkitagent_configured
ansible.builtin.set_fact:
hyprpolkitagent_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprutils
when:
- hyprutils_configured is undefined
block:
- name: Load hyprutils config
ansible.builtin.include_tasks:
file: config/hyprutils.yml
@@ -15,7 +11,3 @@
- name: Append hyprutils to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprutils'] }}"
- name: Set hyprutils_configured
ansible.builtin.set_fact:
hyprutils_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add hyprwayland-scanner
when:
- hyprwayland_scanner_configured is undefined
block:
- name: Load hyprwayland-scanner config
ansible.builtin.include_tasks:
file: config/hyprwayland_scanner.yml
@@ -15,7 +11,3 @@
- name: Append hyprwayland-scanner to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['hyprwayland_scanner'] }}"
- name: Set hyprwayland_scanner_configured
ansible.builtin.set_fact:
hyprwayland_scanner_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add jq
when:
- jq_configured is undefined
block:
- name: Append jq to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['jq'] }}"
- name: Set jq_configured
ansible.builtin.set_fact:
jq_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add kitty
when:
- kitty_configured is undefined
block:
- name: Load kitty config
ansible.builtin.include_tasks:
file: config/kitty.yml
@@ -11,7 +7,3 @@
- name: Append kitty to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + kitty.pkgs }}"
- name: Set kitty_configured
ansible.builtin.set_fact:
kitty_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add libreoffice
when:
- libreoffice_configured is undefined
block:
- name: Load libreoffice config
ansible.builtin.include_tasks:
file: config/libreoffice.yml
@@ -25,7 +21,3 @@
- libreoffice.method == 'cask'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + libreoffice.pkgs }}"
- name: Set libreoffice_configured
ansible.builtin.set_fact:
libreoffice_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add luals
when:
- luals_configured is undefined
block:
- name: Load luals config
ansible.builtin.include_tasks:
file: config/luals.yml
@@ -19,7 +15,3 @@
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['lua-language-server'] }}"
- name: Set luals_configured
ansible.builtin.set_fact:
luals_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add mcfly
when:
- mcfly_configured is undefined
block:
- name: Append mcfly to pkg_sys
when:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add neovide
when:
- neovide_configured is undefined
block:
- name: Load neovide config
ansible.builtin.include_tasks:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add neovim
when:
- neovim_configured is undefined
block:
- name: Load neovim config
ansible.builtin.include_tasks:
file: config/neovim.yml
@@ -26,7 +22,3 @@
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + neovim.build_deps }}"
pkg_src: "{{ pkg_src + ['neovim'] }}"
- name: Set neovim_configured
ansible.builtin.set_fact:
neovim_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add nextcloud_client
when:
- nextcloud_client_configured is undefined
block:
- name: Load nextcloud-client config
ansible.builtin.include_tasks:

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add nfs_server
when:
- nfs_server_configured is undefined
block:
- name: Append nfs_server to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + nfs_client.pkgs }}"
- name: Set nfs_server_configured
ansible.builtin.set_fact:
nfs_server_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add nfs_server
when:
- nfs_server_configured is undefined
block:
- name: Append nfs_server to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + nfs_server.pkgs }}"
- name: Set nfs_server_configured
ansible.builtin.set_fact:
nfs_server_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
# - name: Add nodejs
# when:
# - nodejs_configured is undefined
# block:
- name: Load nodejs config
ansible.builtin.include_tasks:
file: config/nodejs.yml
@@ -11,7 +7,3 @@
- name: Append nodejs to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + nodejs.pkgs }}"
- name: Set nodejs_configured
ansible.builtin.set_fact:
nodejs_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add nomad
when:
- nomad_configured is undefined
block:
- name: Load nomad config
ansible.builtin.include_tasks:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add nwg-hello
when:
- nwg_hello_configured is undefined
block:
- name: Load nwg-hello config
ansible.builtin.include_tasks:
file: config/nwg_hello.yml
@@ -11,7 +7,3 @@
- name: Append nwg-hello build_deps to sys_pkg
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + nwg_hello.build_deps }}"
- name: Append nwg-hello to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['nwg_hello'] }}"

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add packer
when:
- packer_configured is undefined
block:
- name: Load packer config
ansible.builtin.include_tasks:
file: config/packer.yml
@@ -28,7 +24,3 @@
- packer.method == 'archive'
ansible.builtin.set_fact:
pkg_archive: "{{ pkg_archive + ['packer'] }}"
- name: Set packer_configured
ansible.builtin.set_fact:
packer_configured: true

View File

@@ -1,12 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add pandoc
when:
- pandoc_configured is undefined
block:
- name: Append pandoc to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['pandoc'] }}"
- name: Set pandoc_configured
ansible.builtin.set_fact:
pandoc_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add podman
when:
- podman_configured is undefined
block:
- name: Append podman to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['podman'] }}"
- name: Set podman_configured
ansible.builtin.set_fact:
podman_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add pulumi
when:
- pulumi_configured is undefined
block:
- name: Load pulumi config
ansible.builtin.include_tasks:
file: config/pulumi.yml
@@ -19,7 +15,3 @@
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['pulumi'] }}"
- name: Set pulumi_configured
ansible.builtin.set_fact:
pulumi_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add python3
when:
- python3_configured is undefined
block:
- name: Load python3 config
ansible.builtin.include_tasks:
file: config/python3.yml
@@ -11,7 +7,3 @@
- name: Append python3 to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + python3.pkgs }}"
- name: Set python3_configured
ansible.builtin.set_fact:
python3_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add restic
when:
- restic_configured is undefined
block:
- name: Append restic to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['restic'] }}"
- name: Set restic_configured
ansible.builtin.set_fact:
restic_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add ripgrep
when:
- ripgrep_configured is undefined
block:
- name: Append ripgrep to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['ripgrep'] }}"
- name: Set ripgrep_configured
ansible.builtin.set_fact:
ripgrep_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add samba_client
when:
- samba_client_configured is undefined
block:
- name: Append samba_client to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + samba_client.pkgs }}"
- name: Set samba_client_configured
ansible.builtin.set_fact:
samba_client_configured: true

View File

@@ -1,12 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add samba_server
when:
- samba_server_configured is undefined
block:
- name: Append samba_server to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + samba_server.pkgs }}"
- name: Set samba_server_configured
ansible.builtin.set_fact:
samba_server_configured: true

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add sd
when:
- sd_configured is undefined
block:
- name: Append sd to pkg_sys
when:

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add sdbus_cpp_2
when:
- sdbus_cpp_2_configured is undefined
block:
- name: Load sdbus-cpp-2 config
ansible.builtin.include_tasks:
file: config/sdbus_cpp_2.yml
@@ -15,7 +11,3 @@
- name: Append sdbus-cpp-2 to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['sdbus_cpp_2'] }}"
- name: Set sdbus_cpp_2_configured
ansible.builtin.set_fact:
sdbus_cpp_2_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add stow
when:
- stow_configured is undefined
block:
- name: Append stow to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['stow'] }}"

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add tailscale
when:
- tailscale_configured is undefined
block:
- name: Load tailscale config
ansible.builtin.include_tasks:
file: config/tailscale.yml
@@ -71,7 +67,3 @@
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + ['tailscale'] }}"
- name: Set tailscale_configured
ansible.builtin.set_fact:
tailscale_configured: true

View File

@@ -1,13 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add targetcli
when:
- targetcli_configured is undefined
block:
- name: Append targetcli to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + targetcli.pkgs }}"
- name: Set targetcli_configured
ansible.builtin.set_fact:
targetcli_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add terraform
when:
- terraform_configured is undefined
block:
- name: Load terraform config
ansible.builtin.include_tasks:
file: config/terraform.yml
@@ -35,7 +31,3 @@
- terraform.method == 'archive'
ansible.builtin.set_fact:
pkg_archive: "{{ pkg_archive + ['terraform'] }}"
- name: Set terraform_configured
ansible.builtin.set_fact:
terraform_configured: true

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add terraformls
when:
- terraformls_configured is undefined
block:
- name: Load terraformls config
ansible.builtin.include_tasks:
file: config/terraformls.yml

View File

@@ -1,9 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- name: Add thunderbird
when:
- thunderbird_configured is undefined
block:
- name: Append thunderbird to pkg_sys
when:
- ansible_system == 'Linux'

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add tidy
when:
- tidy_configured is undefined
block:
- name: Load tidy config
ansible.builtin.include_tasks:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add tldr
when:
- tldr_configured is undefined
block:
- name: Append tldr to pkg_sys
when:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add tmux
when:
- tmux_configured is undefined
block:
- name: Append tmux to pkg_sys
ansible.builtin.set_fact:

View File

@@ -2,7 +2,6 @@
---
- name: Add uwsm
when:
- uwsm_configured is undefined
- ansible_os_family != 'Alpine'
- ansible_os_family != 'Darwin'
block:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add vault
when:
- vault_configured is undefined
block:
- name: Load vault config
ansible.builtin.include_tasks:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add xdg-desktop-portal-hyprland
when:
- xdg_desktop_portal_hyprland_configured is undefined
block:
- name: Load xdg-desktop-portal-hyprland config
when:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add xh
when:
- xh_configured is undefined
block:
- name: Load xh config
ansible.builtin.include_tasks:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add yazi-fm
when:
- yazi_fm_configured is undefined
block:
- name: Load yazi-fm config
ansible.builtin.include_tasks:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add zfs
when:
- zfs_configured is undefined
block:
- name: Load zfs config
ansible.builtin.include_tasks:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add zoxide
when:
- zoxide_configured is undefined
block:
- name: Append zoxide to pkg_sys
ansible.builtin.set_fact:

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Add zsh
when:
- zsh_configured is undefined
block:
- name: Append zsh to pkg_sys
ansible.builtin.set_fact: