nix-config/modules/layout/default.nix
2025-02-28 19:32:44 +01:00

22 lines
408 B
Nix

{
lib,
config,
...
}: let
inherit (lib) mkIf;
inherit (config.conf) extraLayout;
in
mkIf extraLayout.enable {
services.xserver.xkb = {
layout = "custom,us";
options = "compose:ralt";
extraLayouts."custom" = {
description = "custom dvorak-like layout.";
languages = ["en"];
symbolsFile = ./custom.xkb;
};
};
console.keyMap = "us";
}