13 lines
228 B
Nix
13 lines
228 B
Nix
{ lib, pkgs, inputs, config, ... }:
|
|
|
|
with lib;
|
|
{
|
|
i18n.defaultLocale = mkDefault "en_US.UTF-8";
|
|
services.xserver.xkb = {
|
|
layout = "us";
|
|
variant = "qwerty";
|
|
};
|
|
console = {
|
|
useXkbConfig = mkDefault true;
|
|
};
|
|
}
|