Aggiunto supporto per nix, alacritty e kitty.
This commit is contained in:
parent
813cf57d54
commit
9017f97a6d
11 changed files with 218 additions and 0 deletions
18
roles/nix/tasks/install/generic.yml
Normal file
18
roles/nix/tasks/install/generic.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
# Generic installation, multiuser
|
||||
# Needs systemd, no SELinux and sudo
|
||||
|
||||
- name: Download nix installation script
|
||||
ansible.builtin.get_url:
|
||||
url: https://nixos.org/nix/install
|
||||
dest: /tmp/nixinstall
|
||||
mode: "0755"
|
||||
|
||||
- name: Running installer
|
||||
ansible.builtin.shell: /tmp/nixinstall --daemon
|
||||
become: true
|
||||
|
||||
- name: Removing install script
|
||||
ansible.builtin.file:
|
||||
path: /tmp/nixinstall
|
||||
state: absent
|
Loading…
Add table
Add a link
Reference in a new issue