17 lines
479 B
Nix
17 lines
479 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
wayland.windowManager.hyprland.settings.monitor = "DP-1,3440x1440@164.90,0x0,1.33333,vrr,1";
|
|
wayland.windowManager.hyprland.settings.env = [
|
|
"LIBVA_DRIVER_NAME,nvidia"
|
|
"XDG_SESSION_TYPE,wayland"
|
|
"GBM_BACKEND,nvidia-drm"
|
|
"__GLX_VENDOR_LIBRARY_NAME,nvidia"
|
|
"NVD_BACKEND,direct"
|
|
"ELECTRON_OZONE_PLATFORM_HINT,auto"
|
|
"NIXOS_OZONE_WL,1"
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings.cursor.no_hardware_cursors = true;
|
|
}
|