hosts/base/xkb/default.nix

17 lines
477 B
Nix
Raw Normal View History

2023-02-26 16:42:49 +01:00
{ ... }:
{
services.xserver.layout = "us-fruchti";
services.xserver.extraLayouts = {
de-fruchti = {
description = "DE layout with some small changes";
languages = [ "deu" ];
symbolsFile = ./symbols/de-fruchti;
};
us-fruchti = {
description = "US-altgr-intl layout with some small changes";
languages = [ "eng" ];
symbolsFile = ./symbols/us-fruchti;
};
};
}