flake/common/x11.nix
2024-03-29 21:18:25 -05:00

12 lines
174 B
Nix

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