{ config, lib, pkgs, ... }: { # Only NixOS-level Hyprland configuration here # Home-manager config goes in modules/home/hyprland/chernobyl/ programs.hyprland = { enable = true; }; # Wayland support xwayland.enable = true; # XDG portal for Wayland xdg.portal = { enable = true; extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-hyprland ]; }; }