diff --git a/tasks/archive/packer.yml b/tasks/archive/packer.yml index 03576d9..251c117 100644 --- a/tasks/archive/packer.yml +++ b/tasks/archive/packer.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Download packer archive ansible.builtin.get_url: dest: "{{ d_tempdir.path }}/{{ packer.archive.file }}" diff --git a/tasks/config/aquamarine.yml b/tasks/config/aquamarine.yml index 628b230..3f9c662 100644 --- a/tasks/config/aquamarine.yml +++ b/tasks/config/aquamarine.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set aquamarine config ansible.builtin.set_fact: aquamarine: diff --git a/tasks/config/broot.yml b/tasks/config/broot.yml index 89c6f1f..1c111dd 100644 --- a/tasks/config/broot.yml +++ b/tasks/config/broot.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Set broot config ansible.builtin.set_fact: diff --git a/tasks/config/choose.yml b/tasks/config/choose.yml index fd4b1ee..40f62a4 100644 --- a/tasks/config/choose.yml +++ b/tasks/config/choose.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Set choose config ansible.builtin.set_fact: diff --git a/tasks/config/clangd.yml b/tasks/config/clangd.yml index eacd9b9..ec1c9a6 100644 --- a/tasks/config/clangd.yml +++ b/tasks/config/clangd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set clangd config ansible.builtin.set_fact: clangd: diff --git a/tasks/config/consul.yml b/tasks/config/consul.yml index 379cc81..d2cdf6c 100644 --- a/tasks/config/consul.yml +++ b/tasks/config/consul.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set configuration for consul ansible.builtin.set_fact: consul: diff --git a/tasks/config/fd.yml b/tasks/config/fd.yml index fb44003..911c2d4 100644 --- a/tasks/config/fd.yml +++ b/tasks/config/fd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set fd config ansible.builtin.set_fact: fd: diff --git a/tasks/config/greetd.yml b/tasks/config/greetd.yml index 26fec1a..73302c6 100644 --- a/tasks/config/greetd.yml +++ b/tasks/config/greetd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set config for greetd ansible.builtin.set_fact: greetd: diff --git a/tasks/config/hashicorp.yml b/tasks/config/hashicorp.yml index 95905cf..9ffb9d5 100644 --- a/tasks/config/hashicorp.yml +++ b/tasks/config/hashicorp.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set OS name for RedHat family when: - ansible_os_family == 'RedHat' diff --git a/tasks/config/httpie.yml b/tasks/config/httpie.yml index 7188a49..81bb2b6 100644 --- a/tasks/config/httpie.yml +++ b/tasks/config/httpie.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set method for httpie ansible.builtin.set_fact: httpie: diff --git a/tasks/config/hyprcursor.yml b/tasks/config/hyprcursor.yml index 47997bd..8e7ae83 100644 --- a/tasks/config/hyprcursor.yml +++ b/tasks/config/hyprcursor.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprcursor config ansible.builtin.set_fact: hyprcursor: diff --git a/tasks/config/hyprgraphics.yml b/tasks/config/hyprgraphics.yml index 8b5eff7..f5d8c25 100644 --- a/tasks/config/hyprgraphics.yml +++ b/tasks/config/hyprgraphics.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprgraphics config ansible.builtin.set_fact: hyprgraphics: diff --git a/tasks/config/hypridle.yml b/tasks/config/hypridle.yml index f658b51..f300532 100644 --- a/tasks/config/hypridle.yml +++ b/tasks/config/hypridle.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hypridle config ansible.builtin.set_fact: hypridle: diff --git a/tasks/config/hyprland.yml b/tasks/config/hyprland.yml index 3bf55ec..c1f925b 100644 --- a/tasks/config/hyprland.yml +++ b/tasks/config/hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprland config ansible.builtin.set_fact: hyprland: diff --git a/tasks/config/hyprland_protocols.yml b/tasks/config/hyprland_protocols.yml index 25bf33c..972b91c 100644 --- a/tasks/config/hyprland_protocols.yml +++ b/tasks/config/hyprland_protocols.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprland-protocols config ansible.builtin.set_fact: hyprland_protocols: diff --git a/tasks/config/hyprland_qt_support.yml b/tasks/config/hyprland_qt_support.yml index 25703e0..caf149e 100644 --- a/tasks/config/hyprland_qt_support.yml +++ b/tasks/config/hyprland_qt_support.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprland_qt_support config ansible.builtin.set_fact: hyprland_qt_support: @@ -5,6 +7,6 @@ repo: "{{ pkgconfig.hyprland_qt_support.repo }}" pkg_deps: "{{ pkgconfig.hyprland_qt_support.pkg_deps }}" build_deps: "{{ pkgconfig.hyprland_qt_support.build_deps[ansible_os_family] }}" - installed_files: "{{ pkgconfig.hyprland_qt_support.build_installed_files}}" + installed_files: "{{ pkgconfig.hyprland_qt_support.build_installed_files }}" git_path: "{{ d_tempdir.path }}/hyprland_qt_support" clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}" diff --git a/tasks/config/hyprland_qtutils.yml b/tasks/config/hyprland_qtutils.yml index 9e02874..91cfaf8 100644 --- a/tasks/config/hyprland_qtutils.yml +++ b/tasks/config/hyprland_qtutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprland_qtutils config ansible.builtin.set_fact: hyprland_qtutils: @@ -5,6 +7,6 @@ repo: "{{ pkgconfig.hyprland_qtutils.repo }}" pkg_deps: "{{ pkgconfig.hyprland_qtutils.pkg_deps }}" build_deps: "{{ pkgconfig.hyprland_qtutils.build_deps[ansible_os_family] }}" - installed_files: "{{ pkgconfig.hyprland_qtutils.build_installed_files}}" + installed_files: "{{ pkgconfig.hyprland_qtutils.build_installed_files }}" git_path: "{{ d_tempdir.path }}/hyprland_qtutils" clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}" diff --git a/tasks/config/hyprlang.yml b/tasks/config/hyprlang.yml index da94d1d..5e27877 100644 --- a/tasks/config/hyprlang.yml +++ b/tasks/config/hyprlang.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprlang config ansible.builtin.set_fact: hyprlang: diff --git a/tasks/config/hyprlock.yml b/tasks/config/hyprlock.yml index f79eb30..2c95794 100644 --- a/tasks/config/hyprlock.yml +++ b/tasks/config/hyprlock.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprlock config ansible.builtin.set_fact: hyprlock: @@ -5,6 +7,6 @@ repo: "{{ pkgconfig.hyprlock.repo }}" pkg_deps: "{{ pkgconfig.hyprlock.pkg_deps }}" build_deps: "{{ pkgconfig.hyprlock.build_deps[ansible_os_family] }}" - installed_files: "{{ pkgconfig.hyprlock.build_installed_files}}" + installed_files: "{{ pkgconfig.hyprlock.build_installed_files }}" git_path: "{{ d_tempdir.path }}/hyprlock" clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}" diff --git a/tasks/config/hyprpaper.yml b/tasks/config/hyprpaper.yml index 54f467d..0ff822d 100644 --- a/tasks/config/hyprpaper.yml +++ b/tasks/config/hyprpaper.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprpaper config ansible.builtin.set_fact: hyprpaper: @@ -5,6 +7,6 @@ repo: "{{ pkgconfig.hyprpaper.repo }}" pkg_deps: "{{ pkgconfig.hyprpaper.pkg_deps }}" build_deps: "{{ pkgconfig.hyprpaper.build_deps[ansible_os_family] }}" - installed_files: "{{ pkgconfig.hyprpaper.build_installed_files}}" + installed_files: "{{ pkgconfig.hyprpaper.build_installed_files }}" git_path: "{{ d_tempdir.path }}/hyprpaper" clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}" diff --git a/tasks/config/hyprpicker.yml b/tasks/config/hyprpicker.yml index b1c08a4..dcd56ab 100644 --- a/tasks/config/hyprpicker.yml +++ b/tasks/config/hyprpicker.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprpicker config ansible.builtin.set_fact: hyprpicker: @@ -5,6 +7,6 @@ repo: "{{ pkgconfig.hyprpicker.repo }}" pkg_deps: "{{ pkgconfig.hyprpicker.pkg_deps }}" build_deps: "{{ pkgconfig.hyprpicker.build_deps[ansible_os_family] }}" - installed_files: "{{ pkgconfig.hyprpicker.build_installed_files}}" + installed_files: "{{ pkgconfig.hyprpicker.build_installed_files }}" git_path: "{{ d_tempdir.path }}/hyprpicker" clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}" diff --git a/tasks/config/hyprpolkitagent.yml b/tasks/config/hyprpolkitagent.yml index da92763..a768875 100644 --- a/tasks/config/hyprpolkitagent.yml +++ b/tasks/config/hyprpolkitagent.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprpolkitagent config ansible.builtin.set_fact: hyprpolkitagent: diff --git a/tasks/config/hyprutils.yml b/tasks/config/hyprutils.yml index 799ed49..b8c43be 100644 --- a/tasks/config/hyprutils.yml +++ b/tasks/config/hyprutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyprutils config ansible.builtin.set_fact: hyprutils: diff --git a/tasks/config/hyprwayland_scanner.yml b/tasks/config/hyprwayland_scanner.yml index 32ebead..f294fba 100644 --- a/tasks/config/hyprwayland_scanner.yml +++ b/tasks/config/hyprwayland_scanner.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set hyperwayland-scanner config ansible.builtin.set_fact: hyprwayland_scanner: diff --git a/tasks/config/kitty.yml b/tasks/config/kitty.yml index 135d300..5b37fbf 100644 --- a/tasks/config/kitty.yml +++ b/tasks/config/kitty.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set kitty config ansible.builtin.set_fact: kitty: diff --git a/tasks/config/nextcloud.yml b/tasks/config/nextcloud.yml index ebbaa2f..6c622ee 100644 --- a/tasks/config/nextcloud.yml +++ b/tasks/config/nextcloud.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set nextcloud install method ansible.builtin.set_fact: nextcloud: diff --git a/tasks/config/nodejs.yml b/tasks/config/nodejs.yml index 1ee3330..cd4ff44 100644 --- a/tasks/config/nodejs.yml +++ b/tasks/config/nodejs.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set nodejs config ansible.builtin.set_fact: nodejs: diff --git a/tasks/config/nomad.yml b/tasks/config/nomad.yml index 00f347d..473ef47 100644 --- a/tasks/config/nomad.yml +++ b/tasks/config/nomad.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set nomad config ansible.builtin.set_fact: nomad: diff --git a/tasks/config/nwg_hello.yml b/tasks/config/nwg_hello.yml index bad2ebc..91c6899 100644 --- a/tasks/config/nwg_hello.yml +++ b/tasks/config/nwg_hello.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set nwg-hello configuration ansible.builtin.set_fact: nwg_hello: diff --git a/tasks/config/packer.yml b/tasks/config/packer.yml index 40d3dac..54d5763 100644 --- a/tasks/config/packer.yml +++ b/tasks/config/packer.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set packer config ansible.builtin.set_fact: packer: diff --git a/tasks/config/pgadmin.yml b/tasks/config/pgadmin.yml index b458e7d..4f71c99 100644 --- a/tasks/config/pgadmin.yml +++ b/tasks/config/pgadmin.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set pgadmin config ansible.builtin.set_fact: pgadmin: diff --git a/tasks/config/pulumi.yml b/tasks/config/pulumi.yml index d3f9db2..a359f5f 100644 --- a/tasks/config/pulumi.yml +++ b/tasks/config/pulumi.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set pulumi config ansible.builtin.set_fact: pulumi: diff --git a/tasks/config/python3.yml b/tasks/config/python3.yml index 6ac3e99..c35fb6b 100644 --- a/tasks/config/python3.yml +++ b/tasks/config/python3.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Set python3 config ansible.builtin.set_fact: diff --git a/tasks/config/sdbus_cpp_2.yml b/tasks/config/sdbus_cpp_2.yml index 311df1f..3bb6b3d 100644 --- a/tasks/config/sdbus_cpp_2.yml +++ b/tasks/config/sdbus_cpp_2.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set sdbus-cpp-2 config ansible.builtin.set_fact: sdbus_cpp_2: diff --git a/tasks/config/tailscale.yml b/tasks/config/tailscale.yml index e8129ed..6ba9f2d 100644 --- a/tasks/config/tailscale.yml +++ b/tasks/config/tailscale.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set tailscale config ansible.builtin.set_fact: tailscale: diff --git a/tasks/config/terraform.yml b/tasks/config/terraform.yml index f76c1e6..7617c5c 100644 --- a/tasks/config/terraform.yml +++ b/tasks/config/terraform.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set terraform install method ansible.builtin.set_fact: terraform: diff --git a/tasks/config/tidy.yml b/tasks/config/tidy.yml index 2a8cd9f..a083f0a 100644 --- a/tasks/config/tidy.yml +++ b/tasks/config/tidy.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set tidy config ansible.builtin.set_fact: tidy: diff --git a/tasks/config/uwsm.yml b/tasks/config/uwsm.yml index f2517a2..193a503 100644 --- a/tasks/config/uwsm.yml +++ b/tasks/config/uwsm.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set uwsm config ansible.builtin.set_fact: uwsm: diff --git a/tasks/config/vault.yml b/tasks/config/vault.yml index 8fdeb75..dc8dd7c 100644 --- a/tasks/config/vault.yml +++ b/tasks/config/vault.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set vault install method ansible.builtin.set_fact: vault: diff --git a/tasks/config/xdg_desktop_portal_hyprland.yml b/tasks/config/xdg_desktop_portal_hyprland.yml index f9e4da8..e6e7722 100644 --- a/tasks/config/xdg_desktop_portal_hyprland.yml +++ b/tasks/config/xdg_desktop_portal_hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Set xdg-desktop-portal-hyprland config ansible.builtin.set_fact: xdg_desktop_portal_hyprland: diff --git a/tasks/config/xh.yml b/tasks/config/xh.yml index 7a97674..d65b215 100644 --- a/tasks/config/xh.yml +++ b/tasks/config/xh.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Set xh config ansible.builtin.set_fact: diff --git a/tasks/config/zfs.yml b/tasks/config/zfs.yml index 88925b3..1e84719 100644 --- a/tasks/config/zfs.yml +++ b/tasks/config/zfs.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Set distro name when: diff --git a/tasks/go.yml b/tasks/go.yml index 3c525ef..4c1c607 100644 --- a/tasks/go.yml +++ b/tasks/go.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- - name: Install go package {{ pkg }} become: "{{ ext_become }}" diff --git a/tasks/pkgs/lazygit.yml b/tasks/pkgs/lazygit.yml index eba6244..8c2bead 100644 --- a/tasks/pkgs/lazygit.yml +++ b/tasks/pkgs/lazygit.yml @@ -1,4 +1,4 @@ -# vim: set filetype=yaml : +# vim: set filetype=yaml.ansible : --- - name: Add lazygit when: diff --git a/tasks/pkgs/minio_client.yml b/tasks/pkgs/minio_client.yml index 5b00120..d2b2bf1 100644 --- a/tasks/pkgs/minio_client.yml +++ b/tasks/pkgs/minio_client.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Append mc to pkg_go ansible.builtin.set_fact: pkg_go: "{{ pkg_go + ['github.com/minio/mc@latest'] }}" diff --git a/tasks/pkgs/nwg_hello.yml b/tasks/pkgs/nwg_hello.yml index 5282fc7..37db17c 100644 --- a/tasks/pkgs/nwg_hello.yml +++ b/tasks/pkgs/nwg_hello.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Add nwg-hello when: - nwg_hello_configured is undefined diff --git a/tasks/pkgs/sqlls.yml b/tasks/pkgs/sqlls.yml index 6c81c75..0b8eb33 100644 --- a/tasks/pkgs/sqlls.yml +++ b/tasks/pkgs/sqlls.yml @@ -1,4 +1,4 @@ -# vim: filetype=yaml.ansible : +# vim: set filetype=yaml.ansible : --- - name: Add sqlls when: diff --git a/tasks/src/aquamarine.yml b/tasks/src/aquamarine.yml index d6cb9c4..a727eaf 100644 --- a/tasks/src/aquamarine.yml +++ b/tasks/src/aquamarine.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - aquamarine.clean @@ -61,7 +63,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprcursor.yml b/tasks/src/hyprcursor.yml index 9b4da0c..ccac105 100644 --- a/tasks/src/hyprcursor.yml +++ b/tasks/src/hyprcursor.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hyprcursor.clean @@ -52,7 +54,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprgraphics.yml b/tasks/src/hyprgraphics.yml index 926c4dc..2edc939 100644 --- a/tasks/src/hyprgraphics.yml +++ b/tasks/src/hyprgraphics.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hyprgraphics.clean @@ -52,7 +54,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hypridle.yml b/tasks/src/hypridle.yml index 2d51325..60f3d06 100644 --- a/tasks/src/hypridle.yml +++ b/tasks/src/hypridle.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hypridle.clean @@ -60,7 +62,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprland.yml b/tasks/src/hyprland.yml index a3ea9de..3e57dcb 100644 --- a/tasks/src/hyprland.yml +++ b/tasks/src/hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hyprland.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprland_qt_support.yml b/tasks/src/hyprland_qt_support.yml index 11a2292..88a77da 100644 --- a/tasks/src/hyprland_qt_support.yml +++ b/tasks/src/hyprland_qt_support.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hyprland_qt_support.clean @@ -54,7 +56,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprland_qtutils.yml b/tasks/src/hyprland_qtutils.yml index c483b4c..02dc2b0 100644 --- a/tasks/src/hyprland_qtutils.yml +++ b/tasks/src/hyprland_qtutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install of {{ pkg }} when: - hyprland_qtutils.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprlang.yml b/tasks/src/hyprlang.yml index 57a3f54..e65e971 100644 --- a/tasks/src/hyprlang.yml +++ b/tasks/src/hyprlang.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprlang.clean @@ -52,7 +54,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprlock.yml b/tasks/src/hyprlock.yml index b45088e..50bfac6 100644 --- a/tasks/src/hyprlock.yml +++ b/tasks/src/hyprlock.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprlock.clean @@ -60,7 +62,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprpaper.yml b/tasks/src/hyprpaper.yml index 8bcfa6d..3a8a34d 100644 --- a/tasks/src/hyprpaper.yml +++ b/tasks/src/hyprpaper.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprpaper.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprpicker.yml b/tasks/src/hyprpicker.yml index b101ad7..177aa9c 100644 --- a/tasks/src/hyprpicker.yml +++ b/tasks/src/hyprpicker.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprpicker.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprpolkitagent.yml b/tasks/src/hyprpolkitagent.yml index 1a0f4eb..f0b9bfa 100644 --- a/tasks/src/hyprpolkitagent.yml +++ b/tasks/src/hyprpolkitagent.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprpolkitagent.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprutils.yml b/tasks/src/hyprutils.yml index e871735..66dbfea 100644 --- a/tasks/src/hyprutils.yml +++ b/tasks/src/hyprutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprutils.clean @@ -52,7 +54,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/hyprwayland_scanner.yml b/tasks/src/hyprwayland_scanner.yml index a08deb7..c009593 100644 --- a/tasks/src/hyprwayland_scanner.yml +++ b/tasks/src/hyprwayland_scanner.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - hyprwayland_scanner.clean @@ -44,7 +46,7 @@ - --build - build - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/nwg_hello.yml b/tasks/src/nwg_hello.yml index d8498b9..99c6940 100644 --- a/tasks/src/nwg_hello.yml +++ b/tasks/src/nwg_hello.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - nwg_hello.clean diff --git a/tasks/src/sdbus_cpp_2.yml b/tasks/src/sdbus_cpp_2.yml index 40ab3cb..106fe9f 100644 --- a/tasks/src/sdbus_cpp_2.yml +++ b/tasks/src/sdbus_cpp_2.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - sdbus_cpp_2.clean @@ -53,7 +55,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/tasks/src/xdg_desktop_portal_hyprland.yml b/tasks/src/xdg_desktop_portal_hyprland.yml index cbbfa12..f0d725a 100644 --- a/tasks/src/xdg_desktop_portal_hyprland.yml +++ b/tasks/src/xdg_desktop_portal_hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- - name: Remove existing install {{ pkg }} when: - xdg_desktop_portal_hyprland.clean @@ -50,7 +52,7 @@ - --target - all - -j - - "{{ ansible_processor_nproc|int }}" + - "{{ ansible_processor_nproc | int }}" - name: Install {{ pkg }} become: true diff --git a/vars/pkgs/alacritty.yml b/vars/pkgs/alacritty.yml index f9fb6ab..7ea211d 100644 --- a/vars/pkgs/alacritty.yml +++ b/vars/pkgs/alacritty.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- alacritty: version: 0.15.1 method: diff --git a/vars/pkgs/aquamarine.yml b/vars/pkgs/aquamarine.yml index d376ba7..7fb9978 100644 --- a/vars/pkgs/aquamarine.yml +++ b/vars/pkgs/aquamarine.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- aquamarine: version: v0.8.0 repo: "{{ hyprgitbase }}/aquamarine" diff --git a/vars/pkgs/bitwarden.yml b/vars/pkgs/bitwarden.yml index 22214d8..ed890d5 100644 --- a/vars/pkgs/bitwarden.yml +++ b/vars/pkgs/bitwarden.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- bitwarden: flatpak: name: com.bitwarden.desktop diff --git a/vars/pkgs/broot.yml b/vars/pkgs/broot.yml index c2b9361..c487a8c 100644 --- a/vars/pkgs/broot.yml +++ b/vars/pkgs/broot.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- broot: version: 1.44.7 build_deps: diff --git a/vars/pkgs/carapace.yml b/vars/pkgs/carapace.yml index e76ecdb..d1ec903 100644 --- a/vars/pkgs/carapace.yml +++ b/vars/pkgs/carapace.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- carapace: version: 0.2.0 pkgs: diff --git a/vars/pkgs/choose.yml b/vars/pkgs/choose.yml index b07ea00..f2d699c 100644 --- a/vars/pkgs/choose.yml +++ b/vars/pkgs/choose.yml @@ -1,2 +1,4 @@ +# vim: set filetype=yaml.ansible : +--- choose: version: 1.3.6 diff --git a/vars/pkgs/clangd.yml b/vars/pkgs/clangd.yml index 70e4201..0082890 100644 --- a/vars/pkgs/clangd.yml +++ b/vars/pkgs/clangd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- clangd: pkgs: RedHat: diff --git a/vars/pkgs/consul.yml b/vars/pkgs/consul.yml index e912d6b..a3cb4d4 100644 --- a/vars/pkgs/consul.yml +++ b/vars/pkgs/consul.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- consul: pkgs: Linux: diff --git a/vars/pkgs/fd.yml b/vars/pkgs/fd.yml index 15aa4c1..926c958 100644 --- a/vars/pkgs/fd.yml +++ b/vars/pkgs/fd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- fd: pkgs: Darwin: diff --git a/vars/pkgs/ghostty.yml b/vars/pkgs/ghostty.yml index b7aeb34..d60065e 100644 --- a/vars/pkgs/ghostty.yml +++ b/vars/pkgs/ghostty.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- ghostty: version: v1.1.3 optimize: ReleaseFast diff --git a/vars/pkgs/git.yml b/vars/pkgs/git.yml index c53b86a..e969344 100644 --- a/vars/pkgs/git.yml +++ b/vars/pkgs/git.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- git: pkgs: Darwin: diff --git a/vars/pkgs/go.yml b/vars/pkgs/go.yml index f3d10fe..40e9fef 100644 --- a/vars/pkgs/go.yml +++ b/vars/pkgs/go.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- go: base_url: https://go.dev/dl version: 1.24.0 diff --git a/vars/pkgs/greetd.yml b/vars/pkgs/greetd.yml index 851d854..f3e7f8b 100644 --- a/vars/pkgs/greetd.yml +++ b/vars/pkgs/greetd.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- greetd: pkgs: RedHat: diff --git a/vars/pkgs/hashicorp.yml b/vars/pkgs/hashicorp.yml index 8b7b8e4..6b3f0c9 100644 --- a/vars/pkgs/hashicorp.yml +++ b/vars/pkgs/hashicorp.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hashicorp: Linux: ".el9": diff --git a/vars/pkgs/httpie.yml b/vars/pkgs/httpie.yml index 5478f96..728e6b2 100644 --- a/vars/pkgs/httpie.yml +++ b/vars/pkgs/httpie.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- httpie: flatpak: name: io.httpie.Httpie diff --git a/vars/pkgs/hyprcursor.yml b/vars/pkgs/hyprcursor.yml index 900a2b7..1b7bd93 100644 --- a/vars/pkgs/hyprcursor.yml +++ b/vars/pkgs/hyprcursor.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprcursor: version: v0.1.12 repo: "{{ hyprgitbase }}/hyprcursor" diff --git a/vars/pkgs/hyprgraphics.yml b/vars/pkgs/hyprgraphics.yml index 157d097..6d77c4e 100644 --- a/vars/pkgs/hyprgraphics.yml +++ b/vars/pkgs/hyprgraphics.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprgraphics: version: v0.1.2 repo: "{{ hyprgitbase }}/hyprgraphics" diff --git a/vars/pkgs/hypridle.yml b/vars/pkgs/hypridle.yml index 120fc4b..3d2496b 100644 --- a/vars/pkgs/hypridle.yml +++ b/vars/pkgs/hypridle.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hypridle: version: v0.1.6 repo: "{{ hyprgitbase }}/hypridle" diff --git a/vars/pkgs/hyprland.yml b/vars/pkgs/hyprland.yml index 3214257..a988f18 100644 --- a/vars/pkgs/hyprland.yml +++ b/vars/pkgs/hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprland: version: v0.48.1 repo: "{{ hyprgitbase }}/Hyprland" @@ -10,7 +12,6 @@ hyprland: - hyprlang - hyprcursor - hyprgraphics - - aquamarine - hyprpolkitagent - hyprland_qtutils - hyprlock diff --git a/vars/pkgs/hyprland_protocols.yml b/vars/pkgs/hyprland_protocols.yml index c7224a7..01e6a3c 100644 --- a/vars/pkgs/hyprland_protocols.yml +++ b/vars/pkgs/hyprland_protocols.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprland_protocols: version: v0.6.2 repo: "{{ hyprgitbase }}/hyprland-protocols" diff --git a/vars/pkgs/hyprland_qt_support.yml b/vars/pkgs/hyprland_qt_support.yml index 606a08f..fa20d00 100644 --- a/vars/pkgs/hyprland_qt_support.yml +++ b/vars/pkgs/hyprland_qt_support.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprland_qt_support: version: v0.1.0 repo: "{{ hyprgitbase }}/hyprland-qt-support" diff --git a/vars/pkgs/hyprland_qtutils.yml b/vars/pkgs/hyprland_qtutils.yml index ec77402..0da5b0b 100644 --- a/vars/pkgs/hyprland_qtutils.yml +++ b/vars/pkgs/hyprland_qtutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprland_qtutils: version: v0.1.3 repo: "{{ hyprgitbase }}/hyprland-qtutils" diff --git a/vars/pkgs/hyprlang.yml b/vars/pkgs/hyprlang.yml index 664a83a..b83c928 100644 --- a/vars/pkgs/hyprlang.yml +++ b/vars/pkgs/hyprlang.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprlang: version: v0.6.0 repo: "{{ hyprgitbase }}/hyprlang" diff --git a/vars/pkgs/hyprlock.yml b/vars/pkgs/hyprlock.yml index bd2add6..9394415 100644 --- a/vars/pkgs/hyprlock.yml +++ b/vars/pkgs/hyprlock.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprlock: version: v0.7.0 repo: "{{ hyprgitbase }}/hyprlock" diff --git a/vars/pkgs/hyprpaper.yml b/vars/pkgs/hyprpaper.yml index b1bf693..ebbc564 100644 --- a/vars/pkgs/hyprpaper.yml +++ b/vars/pkgs/hyprpaper.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprpaper: version: v0.7.4 repo: "{{ hyprgitbase }}/hyprpaper" diff --git a/vars/pkgs/hyprpolkitagent.yml b/vars/pkgs/hyprpolkitagent.yml index 118b0e3..759db8d 100644 --- a/vars/pkgs/hyprpolkitagent.yml +++ b/vars/pkgs/hyprpolkitagent.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprpolkitagent: version: v0.1.2 repo: "{{ hyprgitbase }}/hyprpolkitagent" diff --git a/vars/pkgs/hyprutils.yml b/vars/pkgs/hyprutils.yml index 0abca0b..7be0167 100644 --- a/vars/pkgs/hyprutils.yml +++ b/vars/pkgs/hyprutils.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprutils: version: v0.5.2 repo: "{{ hyprgitbase }}/hyprutils" diff --git a/vars/pkgs/hyprwayland_scanner.yml b/vars/pkgs/hyprwayland_scanner.yml index 2348c3f..9928ccb 100644 --- a/vars/pkgs/hyprwayland_scanner.yml +++ b/vars/pkgs/hyprwayland_scanner.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprwayland_scanner: version: v0.4.4 repo: "{{ hyprgitbase }}/hyprwayland-scanner" diff --git a/vars/pkgs/hyrppicker.yml b/vars/pkgs/hyrppicker.yml index c2a8d86..4628611 100644 --- a/vars/pkgs/hyrppicker.yml +++ b/vars/pkgs/hyrppicker.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- hyprpicker: version: v0.4.3 repo: "{{ hyprgitbase }}/hyprpicker" diff --git a/vars/pkgs/kitty.yml b/vars/pkgs/kitty.yml index 4b4bcf7..5a1ad9a 100644 --- a/vars/pkgs/kitty.yml +++ b/vars/pkgs/kitty.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- kitty: pkgs: Darwin: diff --git a/vars/pkgs/libreoffice.yml b/vars/pkgs/libreoffice.yml index ba76634..1c8a4ce 100644 --- a/vars/pkgs/libreoffice.yml +++ b/vars/pkgs/libreoffice.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- libreoffice: methods: default: sys diff --git a/vars/pkgs/luals.yml b/vars/pkgs/luals.yml index 1571760..8c4019a 100644 --- a/vars/pkgs/luals.yml +++ b/vars/pkgs/luals.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- luals: version: 3.13.5 base_url: https://github.com/LuaLS/lua-language-server/releases/download diff --git a/vars/pkgs/neovide.yml b/vars/pkgs/neovide.yml index a33a99d..75ea074 100644 --- a/vars/pkgs/neovide.yml +++ b/vars/pkgs/neovide.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- neovide: version: 0.14.1 git_repo: https://github.com/neovide/neovide.git diff --git a/vars/pkgs/neovim.yml b/vars/pkgs/neovim.yml index 718bfb9..937d3fd 100644 --- a/vars/pkgs/neovim.yml +++ b/vars/pkgs/neovim.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- neovim: version: v0.11.0 build_type: Release diff --git a/vars/pkgs/nerdfonts.yml b/vars/pkgs/nerdfonts.yml index f1e27b6..0003426 100644 --- a/vars/pkgs/nerdfonts.yml +++ b/vars/pkgs/nerdfonts.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- # Font key is the name from [https://www.nerdfonts.com/font-downloads] # If the archive name is different from the listed name, it is set as the archive key nerdfonts: diff --git a/vars/pkgs/nextcloud.yml b/vars/pkgs/nextcloud.yml index 8d6934d..b36fb55 100644 --- a/vars/pkgs/nextcloud.yml +++ b/vars/pkgs/nextcloud.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- nextcloud: flatpak: name: com.nextcloud.desktopclient.nextcloud diff --git a/vars/pkgs/nodejs.yml b/vars/pkgs/nodejs.yml index 7049fe8..d66afc6 100644 --- a/vars/pkgs/nodejs.yml +++ b/vars/pkgs/nodejs.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- nodejs: pkgs: Darwin: diff --git a/vars/pkgs/nomad.yml b/vars/pkgs/nomad.yml index 42a38c3..8a949da 100644 --- a/vars/pkgs/nomad.yml +++ b/vars/pkgs/nomad.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- nomad: pkgs: Linux: diff --git a/vars/pkgs/nwg_hello.yml b/vars/pkgs/nwg_hello.yml index f5db9cb..7b1b805 100644 --- a/vars/pkgs/nwg_hello.yml +++ b/vars/pkgs/nwg_hello.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- nwg_hello: version: main git_repo: https://github.com/nwg-piotr/nwg-hello diff --git a/vars/pkgs/packer.yml b/vars/pkgs/packer.yml index 5402824..7b8ee9b 100644 --- a/vars/pkgs/packer.yml +++ b/vars/pkgs/packer.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- packer: pkgs: Linux: diff --git a/vars/pkgs/pgadmin.yml b/vars/pkgs/pgadmin.yml index 5e3afe0..9f5354f 100644 --- a/vars/pkgs/pgadmin.yml +++ b/vars/pkgs/pgadmin.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- pgadmin: flatpak: name: org.pgadmin.pgadmin4 diff --git a/vars/pkgs/postgresql_server.yml b/vars/pkgs/postgresql_server.yml index 01c457d..c508808 100644 --- a/vars/pkgs/postgresql_server.yml +++ b/vars/pkgs/postgresql_server.yml @@ -1,3 +1,4 @@ +# vim: set filetype=yaml.ansible : --- postgresql_server: version: 16 diff --git a/vars/pkgs/pulumi.yml b/vars/pkgs/pulumi.yml index 94f983d..5557a17 100644 --- a/vars/pkgs/pulumi.yml +++ b/vars/pkgs/pulumi.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- pulumi: version: v3.158.0 url_base: https://get.pulumi.com/releases/sdk diff --git a/vars/pkgs/python3.yml b/vars/pkgs/python3.yml index 1ba2ed4..cda40b6 100644 --- a/vars/pkgs/python3.yml +++ b/vars/pkgs/python3.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- python3: pkgs: Darwin: diff --git a/vars/pkgs/rust.yml b/vars/pkgs/rust.yml index b725732..cb050b4 100644 --- a/vars/pkgs/rust.yml +++ b/vars/pkgs/rust.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- rust: pkgs: Darwin: diff --git a/vars/pkgs/sdbus_cpp_2.yml b/vars/pkgs/sdbus_cpp_2.yml index 9415add..9c88e26 100644 --- a/vars/pkgs/sdbus_cpp_2.yml +++ b/vars/pkgs/sdbus_cpp_2.yml @@ -1,5 +1,6 @@ +# vim: set filetype=yaml.ansible : +--- sdbus_cpp_2: - clean: false version: v2.1.0 repo: https://github.com/Kistler-Group/sdbus-cpp build_deps: diff --git a/vars/pkgs/tailscale.yml b/vars/pkgs/tailscale.yml index dc6bd46..69a6d6e 100644 --- a/vars/pkgs/tailscale.yml +++ b/vars/pkgs/tailscale.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- tailscale: url_base: https://pkgs.tailscale.com/stable release: diff --git a/vars/pkgs/terraform.yml b/vars/pkgs/terraform.yml index 4403413..5db618d 100644 --- a/vars/pkgs/terraform.yml +++ b/vars/pkgs/terraform.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- terraform: version: 1.11.2 archive: diff --git a/vars/pkgs/terraformls.yml b/vars/pkgs/terraformls.yml index a3ecef0..0874dd8 100644 --- a/vars/pkgs/terraformls.yml +++ b/vars/pkgs/terraformls.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- terraformls: version: v0.36.4 gobase: github.com/hashicorp/terraform-ls diff --git a/vars/pkgs/terrarepo.yml b/vars/pkgs/terrarepo.yml index af94a1a..4218a85 100644 --- a/vars/pkgs/terrarepo.yml +++ b/vars/pkgs/terrarepo.yml @@ -1,2 +1,4 @@ +# vim: set filetype=yaml.ansible : +--- terrarepo: repo: https://terra.fyralabs.com/terra.repo diff --git a/vars/pkgs/tidy.yml b/vars/pkgs/tidy.yml index 46950d1..fae01cf 100644 --- a/vars/pkgs/tidy.yml +++ b/vars/pkgs/tidy.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- tidy: pkgs: Darwin: diff --git a/vars/pkgs/uwsm.yml b/vars/pkgs/uwsm.yml index b6713ab..6e7d3d7 100644 --- a/vars/pkgs/uwsm.yml +++ b/vars/pkgs/uwsm.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- uwsm: version: 0.21.1 repo: https://github.com/Vladimir-csp/uwsm.git diff --git a/vars/pkgs/vault.yml b/vars/pkgs/vault.yml index c4492b7..1d2cbc2 100644 --- a/vars/pkgs/vault.yml +++ b/vars/pkgs/vault.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- vault: version: 1.19.0 archive: diff --git a/vars/pkgs/xdg_desktop_portal_hyprland.yml b/vars/pkgs/xdg_desktop_portal_hyprland.yml index 0b82d6a..13e00b2 100644 --- a/vars/pkgs/xdg_desktop_portal_hyprland.yml +++ b/vars/pkgs/xdg_desktop_portal_hyprland.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- xdg_desktop_portal_hyprland: version: v1.3.9 repo: "{{ hyprgitbase }}/xdg-desktop-portal-hyprland" diff --git a/vars/pkgs/xh.yml b/vars/pkgs/xh.yml index c0c70ac..7a8c5d1 100644 --- a/vars/pkgs/xh.yml +++ b/vars/pkgs/xh.yml @@ -1,2 +1,4 @@ +# vim: set filetype=yaml.ansible : +--- xh: version: 0.24.0 diff --git a/vars/pkgs/zfs.yml b/vars/pkgs/zfs.yml index 0cd8053..181b833 100644 --- a/vars/pkgs/zfs.yml +++ b/vars/pkgs/zfs.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- zfs: repo_base: https://zfsonlinux.org gpg_key: https://raw.githubusercontent.com/zfsonlinux/zfsonlinux.github.com/master/zfs-release/RPM-GPG-KEY-openzfs-key2 diff --git a/vars/pkgs/zig.yml b/vars/pkgs/zig.yml index 26b27e1..571520d 100644 --- a/vars/pkgs/zig.yml +++ b/vars/pkgs/zig.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- zig: version: 0.13.0 base_url: https://ziglang.org/download diff --git a/vars/pkgs/zls.yml b/vars/pkgs/zls.yml index 7fe592e..efe9c6d 100644 --- a/vars/pkgs/zls.yml +++ b/vars/pkgs/zls.yml @@ -1,3 +1,5 @@ +# vim: set filetype=yaml.ansible : +--- zls: version: 0.13.0 base_url: https://builds.zigtools.org