diff --git a/playbooks/launch b/playbooks/launch index 2e322c0..21b1c35 100755 --- a/playbooks/launch +++ b/playbooks/launch @@ -17,6 +17,8 @@ elif [[ $(uname) == "Linux" ]]; then ln -sf /usr/bin/python3 /usr/bin/python elif [[ $(command -v dnf) ]]; then sudo dnf install ansible -y + elif [[ $(command -v emerge) ]]; then + sudo emerge ansible fi elif [[ $(uname) == "Darwin" ]]; then if [[ ! $(command -v brew) ]]; then diff --git a/playbooks/main.yml b/playbooks/main.yml index 53d5868..965ec14 100644 --- a/playbooks/main.yml +++ b/playbooks/main.yml @@ -36,6 +36,32 @@ - nightly_neovim: "{{ _nightly_neovim }}" - hakatime_api_key: "{{ _hakatime_api_key }}" +- hosts: os_Gentoo + gather_facts: True + roles: + - role: gentoo + vars: + dev_machine: "{{ _dev_machine }}" + - role: common + vars: + - dev_machine: "{{ _dev_machine }}" + - rust_extras: "{{ _rust_extras }}" + - nightly_neovim: "{{ _nightly_neovim }}" + - hakatime_api_key: "{{ _hakatime_api_key }}" + +- hosts: os_Funtoo + gather_facts: True + roles: + - role: gentoo + vars: + dev_machine: "{{ _dev_machine }}" + - role: common + vars: + - dev_machine: "{{ _dev_machine }}" + - rust_extras: "{{ _rust_extras }}" + - nightly_neovim: "{{ _nightly_neovim }}" + - hakatime_api_key: "{{ _hakatime_api_key }}" + - hosts: os_Archlinux gather_facts: True roles: diff --git a/playbooks/roles/common/tasks/main.yml b/playbooks/roles/common/tasks/main.yml index a176fdb..f2ea343 100644 --- a/playbooks/roles/common/tasks/main.yml +++ b/playbooks/roles/common/tasks/main.yml @@ -76,6 +76,11 @@ dest: ~/.config/topgrade.toml state: link +- name: Make sure ~/.config/lsd exists + file: + path: ~/.config/lsd + state: directory + - name: Lay down lsd/config.yaml file: src: ~/.dotfiles/lsd/config.yaml diff --git a/playbooks/roles/gentoo/defaults/main.yml b/playbooks/roles/gentoo/defaults/main.yml new file mode 100644 index 0000000..3660559 --- /dev/null +++ b/playbooks/roles/gentoo/defaults/main.yml @@ -0,0 +1,2 @@ +--- +dev_machine: yes diff --git a/playbooks/roles/gentoo/tasks/main.yml b/playbooks/roles/gentoo/tasks/main.yml new file mode 100644 index 0000000..62de9e0 --- /dev/null +++ b/playbooks/roles/gentoo/tasks/main.yml @@ -0,0 +1,24 @@ +--- +- name: Install basics + become: yes + become_method: sudo + community.general.portage: + package: + - zsh + - git + - cmake + - tmux + - gnupg + - fzf + - rsync + state: present + +- name: Install skim + become: yes + become_method: sudo + when: + - rust_extras == false + community.general.portage: + package: + - skim + state: present diff --git a/playbooks/roles/gentoo/tasks/neovim-nightly.yml b/playbooks/roles/gentoo/tasks/neovim-nightly.yml new file mode 100644 index 0000000..ec53e5c --- /dev/null +++ b/playbooks/roles/gentoo/tasks/neovim-nightly.yml @@ -0,0 +1,27 @@ +--- +- name: ensure copr command installed + become: yes + become_method: sudo + dnf: + name: + - dnf-command(copr) + state: latest + +- name: Add neovim-nightly copr + become: yes + become_method: sudo + when: + - nightly_neovim == true + command: + cmd: dnf copr enable -y agriffis/neovim-nightly + warn: false + creates: /etc/yum.repos.d/_copr_agriffis_neovim-nightly.repo + +- name: Install neovim + become: yes + become_method: sudo + dnf: + name: + - neovim + state: latest +