nixcfg/modules/home/gui/kbd/default.nix
Harald Hoyer c2486f6c82 refactor: fix formatting and ensure consistent style
- Adjusted formatting in Nix files by revising argument lists.
- Added missing commas for consistency.
- Removed extraneous whitespace and ensured uniform newline usage.
2025-03-20 09:55:20 +01:00

26 lines
522 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.metacfg.gui.kbd;
in
{
options.metacfg.gui.kbd = {
ellipsis = mkEnableOption "ellipsis keybinding for period key";
};
config = mkIf cfg.ellipsis {
xdg.configFile."xkb/symbols/mod".text = ''
xkb_symbols "ellipsis" {
key <AB09> { [ period, greater, ellipsis, division ] };
};
'';
xdg.configFile."xkb/rules/evdev".text = ''
! option = symbols
mod:ellipsis = +mod(ellipsis)
! include %S/evdev
'';
};
}