Files
chezmoi/dot_bootstrap/setup.yml
2025-04-21 12:57:10 +02:00

64 lines
1.7 KiB
YAML

- 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
- zsh
- 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
src: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/CascadiaCode.zip
dest: "~{{ regular_user }}/.fonts/"
remote_src: true
mode: "0755"
owner: "{{ regular_user }}"
- name: Install Oh My Posh
ansible.builtin.shell: curl -s https://ohmyposh.dev/install.sh | bash -s
args:
creates: ~/bin/oh-my-posh # Prevents rerunning if already installed
become: false # Set to true if you want to install system-wide (adjust path accordingly)