mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
16 lines
261 B
Nix
16 lines
261 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable the X11 windowing system.
|
|
services.xserver.enable = true;
|
|
services.xserver.excludePackages = with pkgs; [
|
|
xterm
|
|
];
|
|
|
|
# Configure keymap in X11
|
|
services.xserver = {
|
|
layout = "us";
|
|
xkbVariant = "";
|
|
};
|
|
}
|