add laptop setup #268

Merged
mg merged 44 commits from laptop_mint into master 2024-12-30 20:06:25 +01:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 509720b6c4 - Show all commits

View file

@ -5,6 +5,8 @@
laptop_install_deb_url:
- https://github.com/pulsar-edit/pulsar/releases/download/v1.123.0/Linux.pulsar_1.123.0_amd64.deb
- https://download.xnview.com/XnViewMP-linux-x64.deb
laptop_install_deb_url_archived:
- https://download.mikrotik.com/routeros/winbox/4.0beta14/WinBox_Linux.zip
### mgrote_user_setup
dotfiles:

View file

@ -2,5 +2,13 @@
- name: install deb files
become: true
ansible.builtin.apt:
deb: "{{ laptop_install_deb_url }}"
deb: "{{ item }}"
loop: "{{ laptop_install_deb_url }}"
- name: install archived deb files
ansible.builtin.unarchive:
src: "{{ item }}"
dest: /usr/local/bin
remote_src: yes
loop: "{{ laptop_install_deb_url_archived }}"
...