Files
nixos-config/home/desktops/hyprland/default.nix
2024-08-14 17:14:21 -03:00

16 lines
373 B
Nix

{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;
};
# ...
}