tvl-depot/system/modules/xserver.nix
Griffin Smith 28ccec9704 Initial commit
It begins...
2020-03-28 11:47:06 -04:00

19 lines
325 B
Nix

{ 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
];
};
};
}