aboutsummaryrefslogtreecommitdiff
path: root/src/system/tasks/main.yaml
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2025-06-14 10:52:39 +0530
committerAaditya Dhruv <[email protected]>2025-06-14 10:52:39 +0530
commit35476da777e19e2bcee10beb5ed0ae7362adcd30 (patch)
treea44bfb642b4dedf7f246a82a6771980604508a55 /src/system/tasks/main.yaml
parent5f0f24a52d9175ab638b3d1a77454e65fad88248 (diff)
Update documentation, small fixes to variable namespacing
Diffstat (limited to 'src/system/tasks/main.yaml')
-rw-r--r--src/system/tasks/main.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/system/tasks/main.yaml b/src/system/tasks/main.yaml
index d1b7d69..eddc3fe 100644
--- a/src/system/tasks/main.yaml
+++ b/src/system/tasks/main.yaml
@@ -4,7 +4,7 @@
ansible.builtin.copy:
src: "systemd/user/{{ item }}.service"
dest: "/home/{{ username }}/.config/systemd/user/"
- loop: "{{ systemd }}"
+ loop: "{{ system.systemd }}"
- name: Enable service
become: yes
@@ -13,9 +13,9 @@
scope: user
state: started
name: "{{ item }}.service"
- loop: "{{ systemd }}"
+ loop: "{{ system.systemd }}"
ignore_errors: true
- when: systemd
+ when: system.systemd
- name: Setup DNF conf