nixos-config

NixOS configs for my systems
Log | Files | Refs

commit 2838ec11c9fd8a2e26e1b82138ead65a3524afa6
parent 4ca5331ace5cd78844079f4163fec0024671f0bd
Author: vin <git@vineetk.net>
Date:   Mon, 12 Aug 2024 00:25:22 -0400

use workman layout on laptop

Not needed on desktop because it's part of my keyboard's firmware.

Diffstat:
Mhosts/lappy/default.nix | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/hosts/lappy/default.nix b/hosts/lappy/default.nix @@ -32,15 +32,19 @@ console = { font = "Lat2-Terminus16"; # keyMap = "us"; - # useXkbConfig = true; # use xkb.options in tty. + useXkbConfig = true; # use xkb.options in tty. }; # Enable the X11 windowing system. services.xserver = { enable = true; displayManager.startx.enable = true; - windowManager.i3.enable = true; videoDrivers = [ "modesetting" ]; + windowManager.i3.enable = true; + xkb = { + layout = "us"; + variant = "workman"; + }; }; services.picom = {