update
This commit is contained in:
@@ -4,7 +4,6 @@
|
||||
become: true
|
||||
|
||||
roles:
|
||||
- nix
|
||||
- packages
|
||||
# - customize
|
||||
# - ansibleuser
|
||||
|
||||
2
roles/packages/defaults/main.yml
Normal file
2
roles/packages/defaults/main.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
nvim_version: v0.9.1
|
||||
@@ -34,6 +34,16 @@
|
||||
remote_src: yes
|
||||
with_items: "{{ fonts }}"
|
||||
|
||||
- name: Enable wayland
|
||||
shell: sed -i 's/WaylandEnable=false/WaylandEnable=true/' /etc/gdm3/custom.conf
|
||||
|
||||
- name: download Nvim
|
||||
ansible.builtin.get_url:
|
||||
url: "https://github.com/neovim/neovim/releases/download/{{ nvim_version }}/nvim.appimage"
|
||||
dest: /usr/bin/nvim.appimage
|
||||
mode: '0755'
|
||||
checksum: sha256:https://github.com/neovim/neovim/releases/download/{{ nvim_version }}/nvim.appimage.sha256sum
|
||||
|
||||
- name: Start and enable services
|
||||
ansible.builtin.systemd:
|
||||
state: started
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
required_packages:
|
||||
- ansible
|
||||
- libfuse2
|
||||
|
||||
|
||||
required_flatpak_packages:
|
||||
|
||||
Reference in New Issue
Block a user