mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 01:03:54 +00:00
- Simple in-tree test fixtures, instead of a snapshot of a real config. - Semantic XML/YAML assertions instead of byte-for-byte comparisons.
20 lines
287 B
Plaintext
20 lines
287 B
Plaintext
/ {
|
|
keymap {
|
|
compatible = "zmk,keymap";
|
|
|
|
default_layer {
|
|
bindings = <
|
|
&kp ESC &kp A &kp B
|
|
&kp SPACE &kp C &kp D
|
|
>;
|
|
};
|
|
|
|
fn_layer {
|
|
bindings = <
|
|
&kp F1 &kp F2 &kp F3
|
|
&kp F4 &kp F5 &kp F6
|
|
>;
|
|
};
|
|
};
|
|
};
|