diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 702935092..5d749aec7 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -33,11 +33,19 @@ in }; # Ensure the Hyprland config directory exists and include all files - xdg.configFile = { - "hypr/.keep" = { - text = ""; + xdg.configFile = + ( + { + "hypr/.keep" = { + text = ""; + }; + } + // hyprlandConfs + ) + // { + "hypr/debug-hyprlandConfs.txt" = { + text = builtins.concatStringsSep "\n" (builtins.attrNames hyprlandConfs); + }; }; - } - // hyprlandConfs; }; }