From 4696250131ab149c934c82e4e45719f81a1aaf8a Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 12:19:08 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 33 +++++++++++++----------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 11c8350a2..36c8bc884 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -31,21 +31,24 @@ in enable = true; }; - # Create symlinks in ~/.config/hypr to all the files in assets/hyprland/conf/hypr - xdg.configFile = { - "hypr/.keep" = { - text = ""; + # Create symlinks in ~/.config/hypr to all the files in assets/hyprland/conf/hypr and include debug file + xdg.configFile = + ( + { + "hypr/.keep" = { + text = ""; + }; + } + // hyprlandConfs + ) + // { + "hypr/hyprland-debug.txt" = { + text = '' + hyprlandConfigDir: ${hyprlandConfigDir} + flakeRoot: ${flakeRoot} + files: ${toString files} + ''; + }; }; - } - // hyprlandConfs; - - # Debug statements - xdg.configFile."hypr/hyprland-debug.txt" = { - text = '' - hyprlandConfigDir: ${hyprlandConfigDir} - flakeRoot: ${flakeRoot} - files: ${toString files} - ''; - }; }; }