add(nix): xkb dvorak-french layout

 hurray ! 
This commit is contained in:
Léana 江 2023-12-24 23:16:44 +01:00 committed by Léana 江
parent 7a39b3e3fd
commit 9f509de403
7 changed files with 129 additions and 2351 deletions

18
nix/layouts/default.nix Normal file
View file

@ -0,0 +1,18 @@
{...}: {
services.xserver.xkb = {
layout = "dvorak";
extraLayouts = {
"dvorak" = {
languages = ["us"];
symbolsFile = ./dvorak.xkb;
description = "Leana's dvorak";
};
"dvorak-french" = {
languages = ["fr"];
symbolsFile = ./dvorak-french.xkb;
description = "Leana's dvorak but baguette";
};
};
};
console.useXkbConfig = true;
}