fix(fqdn): fixed fqdn for certain modules

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-01-22 00:39:18 +01:00
parent 71532a6d25
commit 7aab3a2801
2 changed files with 12 additions and 7 deletions

View File

@@ -1,11 +1,12 @@
--- ---
- name: Install neovim npm package globally - name: Install neovim npm package globally
ansible.builtin.npm: ansible.general.npm:
name: neovim name: neovim
global: yes global: true
become: true
- name: Install Rust (via rustup) - name: Install Rust (via rustup)
become: false
ansible.builtin.shell: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ansible.builtin.shell: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
args: args:
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustc" creates: "{{ ansible_env.HOME }}/.cargo/bin/rustc"
become: false

View File

@@ -1,22 +1,26 @@
--- ---
- name: Install snap packages - bottom - name: Install snap packages - bottom
ansible.builtin.snap: ansible.general.snap:
name: bottom name: bottom
state: present state: present
become: true
- name: Install snap packages - signal-desktop - name: Install snap packages - signal-desktop
ansible.builtin.snap: ansible.general.snap:
name: signal-desktop name: signal-desktop
state: present state: present
become: true
- name: Install snap packages - nvim - name: Install snap packages - nvim
ansible.builtin.snap: ansible.general.snap:
name: nvim name: nvim
classic: true classic: true
state: present state: present
become: true
- name: Install snap packages - zellij - name: Install snap packages - zellij
ansible.builtin.snap: ansible.general.snap:
name: zellij name: zellij
classic: true classic: true
state: present state: present
become: true