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 16, 2024
1 parent 68da220 commit d29d646
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,35 @@
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:
cmd: ./guix-install.sh
chdir: /home/kasm-default-profile/guix/etc
executable: /bin/bash
responses: ""

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

0 comments on commit d29d646

Please sign in to comment.