a566e0208f
only on chupacabra laptop keyboard
18 lines
289 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|