modules/hardware/qwerty.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{ config, pkgs, ... }: { services.kmscon = { extraConfig = '' xkb-model=pc104 xkb-layout=us xkb-options="altwin:prtsc_rwin" ''; }; services.xserver = { layout = "us"; xkbOptions = "altwin:prtsc_rwin"; }; }