mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
13 lines
334 B
Nix
13 lines
334 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"DP-1,2560x1440@165,1920x0,auto"
|
|
"HDMI-A-1,1920x1080@60,0x0,1"
|
|
];
|
|
# wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${pkgs.system}.hyprland;
|
|
wayland.windowManager.hyprland.settings.render.explicit_sync = 0;
|
|
}
|