tvl-depot/system/modules/xserver.nix
Griffin Smith a566e0208f Swap caps+escape and alt+super
only on chupacabra laptop keyboard
2020-04-05 15:26:16 -04:00

18 lines
289 B
Nix

{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us";
libinput.enable = true;
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
i3status
i3lock
];
};
};
}