Skip to content

Commit

Permalink
fix(nix): applied fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNabokikh committed Dec 13, 2023
1 parent 2ed5801 commit 10be6a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@
- name: Download Nix installer script
ansible.builtin.get_url:
url: "https://nixos.org/nix/install"
dest: "{{ nix_script_dir }}/install_nix.sh"
dest: "/tmp/install_nix.sh"
mode: "0755"

- name: Run Nix installer script
become: true
become_user: "{{ username }}"
ansible.builtin.command: "{{ nix_script_dir }}/install_nix.sh"
ansible.builtin.command: "/tmp/install_nix.sh"
args:
creates: "/nix/store"

Expand Down

0 comments on commit 10be6a3

Please sign in to comment.