about summary refs log blame commit diff
path: root/system/modules/xserver.nix
blob: 52f04e2e6a692b1aaf88ad16fd94af69ad74b706 (plain) (tree)


















                                    
{ config, pkgs, ... }:
{
  # Enable the X11 windowing system.
  services.xserver = {
    enable = true;
    layout = "us";
    xkbOptions = "caps:swapescape";

    libinput.enable = true;

    windowManager.i3 = {
      enable = true;
      extraPackages = with pkgs; [
        i3status
        i3lock
      ];
    };
  };
}