mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
15 lines
363 B
Nix
15 lines
363 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home.file = {
|
|
".xkb/symbols/us_gbp_map".text = ''
|
|
default partial alphanumeric_keys
|
|
xkb_symbols "basic" {
|
|
include "us(altgr-intl)"
|
|
name[Group1] = "English (US, international with pound sign)";
|
|
key <AD03> { [ e, E, EuroSign, cent ] };
|
|
key <AE03> { [ 3, numbersign, sterling] };
|
|
};
|
|
'';
|
|
};
|
|
}
|