Fallback on extraConfigs

This commit is contained in:
Patrick Menking 2024-09-17 21:09:08 -04:00
parent be70a0a907
commit 0a90bf7151

View file

@ -59,26 +59,30 @@
enable = true; enable = true;
keyboards.default = { keyboards.default = {
ids = [ "*" ]; ids = [ "*" ];
settings = { extraConfig = ''
main = { [main]
capslock = "layer(l2)";
};
l2 = {
w = "up";
a = "left";
s = "down";
d = "right";
b = "C-b"; capslock = layer(l2)
space = "playpause"; [l2]
''. = "nextsong";
'', = "prevsong";
escape = "~"; w = up
home = "end"; s = down
}; a = left
}; d = right
b = C-b
space = playpause
. = nextsong
, = previoussong
[ = delete
] = end
escape = ~
home = end
''
}; };
}; };
}; };