9 lines
156 B
Nix
9 lines
156 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ nomachine-client ];
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
monitor=DP-1,highrr,auto,1.00
|
|
'';
|
|
}
|