configurations of hq services
https://hydra.hq.c3d2.de/jobset/c3d2/nix-config#tabs-jobs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
422 B
25 lines
422 B
--- |
|
- 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 |