{ pkgs, config, ... }: let xcfg = config.services.xserver; in { i18n.consoleUseXkbConfig = true; services.xserver.layout = "dvorak"; services.xserver.xkbOptions = "ctrl:nocaps,compose:menu"; environment.variables.XKB_DEFAULT_LAYOUT = xcfg.layout; environment.variables.XKB_DEFAULT_OPTIONS = xcfg.xkbOptions; services.evscript.enable = true; services.evscript.script = ./events.dyon; boot.postBootCommands = '' # Remap tab to left super /run/current-system/sw/bin/setkeycodes 0f 125 ''; sound.enable = true; }