Add Gentoo/Funtoo
This commit is contained in:
parent
8fa121d3d7
commit
ab300b1ae2
6 changed files with 86 additions and 0 deletions
|
@ -17,6 +17,8 @@ elif [[ $(uname) == "Linux" ]]; then
|
||||||
ln -sf /usr/bin/python3 /usr/bin/python
|
ln -sf /usr/bin/python3 /usr/bin/python
|
||||||
elif [[ $(command -v dnf) ]]; then
|
elif [[ $(command -v dnf) ]]; then
|
||||||
sudo dnf install ansible -y
|
sudo dnf install ansible -y
|
||||||
|
elif [[ $(command -v emerge) ]]; then
|
||||||
|
sudo emerge ansible
|
||||||
fi
|
fi
|
||||||
elif [[ $(uname) == "Darwin" ]]; then
|
elif [[ $(uname) == "Darwin" ]]; then
|
||||||
if [[ ! $(command -v brew) ]]; then
|
if [[ ! $(command -v brew) ]]; then
|
||||||
|
|
|
@ -36,6 +36,32 @@
|
||||||
- nightly_neovim: "{{ _nightly_neovim }}"
|
- nightly_neovim: "{{ _nightly_neovim }}"
|
||||||
- hakatime_api_key: "{{ _hakatime_api_key }}"
|
- 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
|
- hosts: os_Archlinux
|
||||||
gather_facts: True
|
gather_facts: True
|
||||||
roles:
|
roles:
|
||||||
|
|
|
@ -76,6 +76,11 @@
|
||||||
dest: ~/.config/topgrade.toml
|
dest: ~/.config/topgrade.toml
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
|
- name: Make sure ~/.config/lsd exists
|
||||||
|
file:
|
||||||
|
path: ~/.config/lsd
|
||||||
|
state: directory
|
||||||
|
|
||||||
- name: Lay down lsd/config.yaml
|
- name: Lay down lsd/config.yaml
|
||||||
file:
|
file:
|
||||||
src: ~/.dotfiles/lsd/config.yaml
|
src: ~/.dotfiles/lsd/config.yaml
|
||||||
|
|
2
playbooks/roles/gentoo/defaults/main.yml
Normal file
2
playbooks/roles/gentoo/defaults/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
dev_machine: yes
|
24
playbooks/roles/gentoo/tasks/main.yml
Normal file
24
playbooks/roles/gentoo/tasks/main.yml
Normal 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
|
27
playbooks/roles/gentoo/tasks/neovim-nightly.yml
Normal file
27
playbooks/roles/gentoo/tasks/neovim-nightly.yml
Normal 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue