10 lines
198 B
Nix
10 lines
198 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ nomachine-client ];
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
monitor=DP-1,highrr,0x0,1.00
|
|
monitor=HDMI-A-1,highres,1920x325,1.00
|
|
'';
|
|
}
|