This commit is contained in:
2024-08-14 17:14:21 -03:00
parent 828c0bbff7
commit 9b4adcdbf7
2 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,15 @@
{
wayland.windowManager.hyprland.enable = true;
{pkgs, ...}: {
wayland.windowManager.hyprland = {
# Whether to enable Hyprland wayland compositor
enable = true;
# The hyprland package to use
package = pkgs.hyprland;
# Whether to enable XWayland
xwayland.enable = true;
# Optional
# Whether to enable hyprland-session.target on hyprland startup
systemd.enable = true;
};
# ...
}