Skip to content

Commit 51bd7be

Browse files
install guix (package manager) with apt
1 parent 68da220 commit 51bd7be

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

playbook.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,26 @@
119119
roles:
120120
- role: staticdev.firefox
121121

122+
-
123+
hosts: localhost
124+
connection: local
125+
gather_facts: yes
126+
tags:
127+
- install_utilities
128+
- install_guix
129+
130+
tasks:
131+
- name: Install guix with apt
132+
apt:
133+
name: guix
134+
update_cache: yes
135+
- name: Get disk usage
136+
shell: df -h
137+
register: disk_usage
138+
- name: Display disk usage
139+
debug:
140+
msg: "{{ disk_usage.stdout }}"
141+
122142
-
123143
# install keychain, git, and @capsulecorplab .vimrc and .gitconfig
124144
hosts: localhost

0 commit comments

Comments
 (0)