Add Ansible
This commit is contained in:
55
dot_bootstrap/setup.yml
Normal file
55
dot_bootstrap/setup.yml
Normal file
@@ -0,0 +1,55 @@
|
||||
- name: Role out main Configuration to {{ ansible_hostname }}
|
||||
hosts: localhost
|
||||
connection: local
|
||||
gather_facts: true
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Get my user
|
||||
ansible.builtin.set_fact:
|
||||
regular_user: "{{ ansible_env.SUDO_USER or ansible_user_id }}"
|
||||
|
||||
- name: Install common packages
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
# Terminal tools
|
||||
- git
|
||||
- htop
|
||||
- fzf
|
||||
- zoxide
|
||||
- bat
|
||||
- eza
|
||||
- duf
|
||||
- ripgrep
|
||||
- yazi
|
||||
- tmux
|
||||
# Editor
|
||||
- nvim
|
||||
# Backup/Restor
|
||||
#- chezmoi
|
||||
- rsync
|
||||
# Network
|
||||
- mosh
|
||||
- nmap
|
||||
- tcpdump
|
||||
|
||||
- name: Change shell to zsh
|
||||
ansible.builtin.user:
|
||||
name: "{{ regular_user }}"
|
||||
shell: /usr/bin/zsh
|
||||
|
||||
- name: Create fonts directory
|
||||
ansible.builtin.file:
|
||||
path: "~{{ regular_user }}/.fonts"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
owner: "{{ regular_user }}"
|
||||
|
||||
- name: Installing Nerdfonts
|
||||
ansible.builtin.unarchive:
|
||||
src: https://github.com/eliheuer/caskaydia-cove/archive/refs/heads/master.zip
|
||||
dest: "~{{ regular_user }}/.fonts/"
|
||||
remote_src: true
|
||||
mode: "0755"
|
||||
owner: "{{ regular_user }}"
|
||||
|
||||
Reference in New Issue
Block a user