1
0

Added Nix

This commit is contained in:
2025-11-03 18:07:10 +01:00
parent b25a30615b
commit a89bfb740e
6 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
- name: Install Nix on Arch
become: true
ansible.builtin.pacman:
name: nix
when: chezmoi.osRelease.id == "arch"
- name: Start the Nix daemon
become: true
ansible.builtin.systemd_service:
name: nix-daemon
enabled: true
state: started