mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
12 lines
216 B
Nix
12 lines
216 B
Nix
|
{host, ...}: let
|
||
|
inherit (import ../../hosts/${host}/variables.nix) keyboardLayout;
|
||
|
in {
|
||
|
services.xserver = {
|
||
|
enable = false;
|
||
|
xkb = {
|
||
|
layout = "${keyboardLayout}";
|
||
|
variant = "";
|
||
|
};
|
||
|
};
|
||
|
}
|