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} - ''; - }; }; }