mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/x11: create xkb option by default
without this ``` nix-repl> nixosTests.xfce.nodes.machine.services.xserver.xkb error: The option 'nodes.machine.services.xserver.xkb' is used but not defined. ``` with this ``` nix-repl> nixosTests.xfce.nodes.machine.services.xserver.xkb { dir = "/nix/store/096yg7fc67py86w0bm6g7a32npgyh5ic-xkeyboard-config-2.39/etc/X11/xkb"; layout = "us"; model = "pc104"; options = "terminate:ctrl_alt_bksp"; variant = ""; } ```
This commit is contained in:
parent
17ba026d40
commit
d470944859
1 changed files with 1 additions and 0 deletions
|
@ -365,6 +365,7 @@ in
|
|||
};
|
||||
|
||||
xkb = mkOption {
|
||||
default = { };
|
||||
description = "X keyboard extension (XKB) configuration";
|
||||
type = types.submodule {
|
||||
options = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue