finding hyprland.conf error

This commit is contained in:
2026-03-15 11:39:16 +00:00
parent 041a185e00
commit 9a55f5b784
+9 -6
View File
@@ -32,17 +32,20 @@ in
enable = true; enable = true;
}; };
# Ensure the Hyprland config directory exists # Ensure the Hyprland config directory exists and include debug file
xdg.configFile = { xdg.configFile =
(
{
"hypr/.keep" = { "hypr/.keep" = {
text = ""; text = "";
}; };
} }
// hyprlandConfs; // hyprlandConfs
)
# Write the list of files to a debug file // {
xdg.configFile."hypr/debug-files.txt" = { "hypr/debug-files.txt" = {
text = builtins.concatStringsSep "\n" files; text = builtins.concatStringsSep "\n" files;
}; };
}; };
};
} }