19 lines
289 B
Nix
19 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
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|