mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
add(nix): xkb dvorak-french layout
✨ hurray ! ✨
This commit is contained in:
parent
7a39b3e3fd
commit
9f509de403
7 changed files with 129 additions and 2351 deletions
18
nix/layouts/default.nix
Normal file
18
nix/layouts/default.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue