X11 keyrepeat delay and interval

I want to set the X11 keyrepeat delay and interval. On my previous setup I had xset r rate 250 30 and I found on nix I should do the following:

  services.xserver.autoRepeatDelay = 250;
  services.xserver.autoRepeatInterval = 30;

But by using that nix config, key repeat delay and interval only changes in the display manager. Whenever I start an xfce session, key repeat delay and interval is on the default value, not the one I set.

3 Likes