Add Gentoo/Funtoo

This commit is contained in:
Anthony Cicchetti 2021-01-15 23:49:18 -05:00
parent 8fa121d3d7
commit ab300b1ae2
6 changed files with 86 additions and 0 deletions

View file

@ -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

View file

@ -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:

View file

@ -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

View file

@ -0,0 +1,2 @@
---
dev_machine: yes

View file

@ -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

View file

@ -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