diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-14 10:13:07 +0530 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-14 10:13:07 +0530 |
commit | 5f0f24a52d9175ab638b3d1a77454e65fad88248 (patch) | |
tree | 03159fd6a3a69e6fc56ec33258964e3bffabffc1 /src/system/tasks | |
parent | bd8919afb109efa0a92def766aca81f1e2e146fa (diff) |
Update system, packages and playbooks, add vault
Diffstat (limited to 'src/system/tasks')
-rw-r--r-- | src/system/tasks/main.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system/tasks/main.yaml b/src/system/tasks/main.yaml index 626f70a..d1b7d69 100644 --- a/src/system/tasks/main.yaml +++ b/src/system/tasks/main.yaml @@ -3,7 +3,7 @@ - name: Copying user systemd configs ansible.builtin.copy: src: "systemd/user/{{ item }}.service" - dest: "/home/{{ config.username }}/.config/systemd/user/" + dest: "/home/{{ username }}/.config/systemd/user/" loop: "{{ systemd }}" - name: Enable service @@ -15,7 +15,7 @@ name: "{{ item }}.service" loop: "{{ systemd }}" ignore_errors: true - when: 'config.system.install_systemd' + when: systemd - name: Setup DNF conf |