From c4d686e56ade4474ffa433847c85a633209b4769 Mon Sep 17 00:00:00 2001 From: Bluemedia Date: Sun, 25 Feb 2024 22:03:21 +0100 Subject: [PATCH] use import_tasks --- roles/desktop-environment/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/desktop-environment/tasks/main.yml b/roles/desktop-environment/tasks/main.yml index ac0be08..99e828b 100644 --- a/roles/desktop-environment/tasks/main.yml +++ b/roles/desktop-environment/tasks/main.yml @@ -1,11 +1,11 @@ - name: Include installation of Hyprland - include: hyprland.yml + import_tasks: hyprland.yml - name: Include installation of utilities - include: utils.yml + import_tasks: utils.yml - name: Include flatpak setup - include: flatpak.yml + import_tasks: flatpak.yml - name: Include configuration steps - include: config.yml \ No newline at end of file + import_tasks: config.yml \ No newline at end of file