Updateing

This commit is contained in:
Justin 2025-04-14 16:30:04 -05:00
parent 659d653e90
commit 6236bf6caa
3 changed files with 28 additions and 0 deletions

View File

@ -108,3 +108,22 @@
ansible.builtin.apt:
name: fzf
state: latest
- name: Setting neovim as Viual default
ansible.builtin.lineinfile:
line: 'export VISUAL=nvim'
path: "~/.bashrc"
insertafter: EOF
- name: Setting neovim deflault editor
ansible.builtin.lineinfile:
line: 'export EDITOR=nvim'
path: "~/.bashrc"
insertafter: EOF
- name: Reload bashrc
ansible.builtin.command:
cmd: "source /home/justin/.bashrc"

9
ubuntu/maint-reboot.yaml Normal file
View File

@ -0,0 +1,9 @@
---
- name: Reboot machine
hosts: "{{ my_hosts | d([]) }}"
become: true
tasks:
- name: Reboot machine
ansible.builtin.reboot:
reboot_timeout: 3600