format
This commit is contained in:
parent
42d04f49fe
commit
606e382083
53 changed files with 1319 additions and 967 deletions
|
@ -1,17 +1,22 @@
|
|||
{ lib, config, ... }: let
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (config.conf) extraLayout;
|
||||
in mkIf extraLayout.enable {
|
||||
services.xserver.xkb = {
|
||||
layout = "custom,us";
|
||||
options = "compose:ralt";
|
||||
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;
|
||||
extraLayouts."custom" = {
|
||||
description = "custom dvorak-like layout.";
|
||||
languages = ["en"];
|
||||
symbolsFile = ./custom.xkb;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
console.keyMap = "us";
|
||||
}
|
||||
console.keyMap = "us";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue