mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
16 lines
192 B
Nix
16 lines
192 B
Nix
|
{...}: {
|
||
|
imports = [
|
||
|
./evremap.nix
|
||
|
];
|
||
|
services.xserver = {
|
||
|
xkb = {
|
||
|
layout = "us";
|
||
|
variant = "altgr-intl";
|
||
|
};
|
||
|
|
||
|
libinput = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|