From 774d720487ffbd00bb6816ea984ad86fb32a45bb Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 11:43:49 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 15472729e..702935092 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -32,20 +32,12 @@ in enable = true; }; - # Ensure the Hyprland config directory exists and include debug file - xdg.configFile = - ( - { - "hypr/.keep" = { - text = ""; - }; - } - // hyprlandConfs - ) - // { - "hypr/debug-files.txt" = { - text = builtins.concatStringsSep "\n" files; - }; + # Ensure the Hyprland config directory exists and include all files + xdg.configFile = { + "hypr/.keep" = { + text = ""; }; + } + // hyprlandConfs; }; }