nix-config/ansible/roles/proxmox/tasks/main.yml
Daniel Poelzleithner 2dcf9846ae start ansible project
for hypervisors and non nix hosts, switch to ansible for ease of existence
2019-04-16 13:17:19 +02:00

25 lines
422 B
YAML

---
- name: Update all packages to the latest version
apt:
upgrade: dist
- name: Install packages
apt:
name: "{{ packages }}"
vars:
packages:
- zsh
- iotop
- latencytop
- htop
- name: Cloning oh-my-zsh
git:
repo=https://github.com/robbyrussell/oh-my-zsh
dest=~/.oh-my-zsh
- name: Link ~/.zshrc
file:
src: /etc/pve/zshrc
dest: ~/.zshrc
state: link
force: yes