From 041a185e009b5d3f8e1168ccd27ef54f378a53e5 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 11:38:04 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index d48ff0058..82e50461a 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -9,7 +9,6 @@ let hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr"; - # Dynamically read all files in assets/hyprland/conf/hypr files = builtins.attrNames (builtins.readDir "${flakeRoot}/assets/hyprland/conf/hypr"); hyprlandConfs = lib.genAttrs files (name: { text = builtins.readFile "${flakeRoot}/assets/hyprland/conf/hypr/${name}"; @@ -41,7 +40,9 @@ in } // hyprlandConfs; - # Debug: Print the list of files being read - debug.files = files; + # Write the list of files to a debug file + xdg.configFile."hypr/debug-files.txt" = { + text = builtins.concatStringsSep "\n" files; + }; }; }