Skip to content

Commit

Permalink
attempt to install guix (package manager)
Browse files Browse the repository at this point in the history
  • Loading branch information
capsulecorplab committed Nov 18, 2024
1 parent 68da220 commit 27d7ff6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,36 @@
debug:
msg: "{{ disk_usage.stdout }}"

-
hosts: localhost
connection: local
gather_facts: yes
tags:
- install_utilities
- install_guix

vars:
guix_version: "v1.4.0"

tasks:
- name: Clone guix
shell:
cmd: git clone git://git.savannah.gnu.org/guix.git
chdir: /home/kasm-default-profile/
executable: /bin/bash
- name: Checkout guix version {{ guix_version }}
shell:
cmd: git checkout {{ guix_version }}
chdir: /home/kasm-default-profile/guix
executable: /bin/bash
- name: Install guix # as per https://guix.gnu.org/manual/en/html_node/Installation.html
expect:
command: ./guix-install.sh
chdir: /home/kasm-default-profile/guix/etc
executable: /bin/bash
responses:
"Press return to continue...": ""

-
# install Python packages with pip
hosts: localhost
Expand Down

0 comments on commit 27d7ff6

Please sign in to comment.