{ config, pkgs, ... }: {
# x11
services.xserver.enable = true;
services.xserver = {
layout = "us";
xkbVariant = "";
};
# xdg portals
xdg.portal.enable = true;
xdg.portal.extraPortals = with pkgs; [
xdg-desktop-portal-wlr
];
# gnome
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
# environment variables for hyprland
environment.sessionVariables = {
# hint electron apps to use wayland
NIXOS_OZONE_WL = "1";
}