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
ansible.builtin.npm:
ansible.general.npm:
name: neovim
global: yes
global: true
become: true
- name: Install Rust (via rustup)
become: false
ansible.builtin.shell: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
args:
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustc"
become: false

View File

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