From 9a55f5b7841594ae6612518753aefc2aeca9723a Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 11:39:16 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 25 +++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 82e50461a..15472729e 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -32,17 +32,20 @@ in enable = true; }; - # Ensure the Hyprland config directory exists - xdg.configFile = { - "hypr/.keep" = { - text = ""; + # 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; + }; }; - } - // hyprlandConfs; - - # Write the list of files to a debug file - xdg.configFile."hypr/debug-files.txt" = { - text = builtins.concatStringsSep "\n" files; - }; }; }