feat(desktop): configure compose key via xkb
This commit is contained in:
parent
80808acdd8
commit
56ef4fdf11
1 changed files with 10 additions and 2 deletions
|
@ -1,8 +1,16 @@
|
||||||
{ config, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
services.xserver.xkb.layout = "gb";
|
services.xserver.xkb.layout = "gb";
|
||||||
services.xserver.xkb.options = "eurosign:e";
|
services.xserver.xkb.options = lib.concatStringsSep "," [
|
||||||
|
"eurosign:e"
|
||||||
|
"compose:ralt"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue