Add Ansible configuration and remove NixOS
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 39s
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 39s
This commit is contained in:
9
config/ansible/tasks/brave.yml
Normal file
9
config/ansible/tasks/brave.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: Check if Brave is installed
|
||||
ansible.builtin.command: brave-browser --version
|
||||
register: brave_check
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
|
||||
- name: Install Brave Browser
|
||||
shell: curl -fsS https://dl.brave.com/install.sh | sh -s -- -y
|
||||
when: brave_check.rc != 0
|
||||
Reference in New Issue
Block a user