dotfiles/modules/home/gui/desktop/hypr/land/config/monitor.nix

15 lines
292 B
Nix
Raw Normal View History

2025-06-01 14:55:05 -05:00
{ flake, osConfig, ... }:
2025-03-29 23:08:26 -05:00
let
2025-06-01 14:55:05 -05:00
inherit (flake.config.machines) devices;
deimos = devices.deimos.name;
host = osConfig.networking.hostName;
deviceLogic = if host == deimos then "1" else "1";
2025-03-29 23:08:26 -05:00
monitorSettings = [
2025-06-01 14:55:05 -05:00
"eDP-1,highres@highrr,0x0,${deviceLogic}"
2025-03-29 23:08:26 -05:00
];
in
monitorSettings