feat(users/flokli/kb): add chocofi
`buildSplitKeyboard`, as well as all the patching of `miryoku_zmk` is independent of the specific keyboard used, so it can be moved one layer up. `config-flat` is now provided through a helper function, accepting the name of the keymap to use when rendering the config. This all makes the amount of code added for the new keyboard itself pleasantly small. Change-Id: I2216aa246502eddaf9bc4f4d126b0639d574ad87 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12787 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
7a54360a39
commit
c445970869
6 changed files with 88 additions and 48 deletions
25
users/flokli/keyboards/chocofi/default.nix
Normal file
25
users/flokli/keyboards/chocofi/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, depot, ... }:
|
||||
rec {
|
||||
firmware = depot.users.flokli.keyboards.buildSplitKeyboard {
|
||||
name = "nice_nano_v2";
|
||||
board = "nice_nano_v2";
|
||||
shield = "corne_%PART% nice_view_adapter nice_view";
|
||||
zephyrDepsHash = "sha256-D5CAlrO/E6DPbtUJyh/ec8ACpo1XM1jx2gLS2TpklBQ=";
|
||||
src = depot.users.flokli.keyboards.miryoku_config;
|
||||
};
|
||||
|
||||
config-flat = depot.users.flokli.keyboards.mkFlatConfig "corne";
|
||||
|
||||
flash-left = pkgs.writeShellScript "flash.sh" ''
|
||||
cp ${firmware}/zmk_left.uf2 /run/media/$USER/NICENANO/
|
||||
'';
|
||||
|
||||
flash-right = pkgs.writeShellScript "flash.sh" ''
|
||||
cp ${firmware}/zmk_right.uf2 /run/media/$USER/NICENANO/
|
||||
'';
|
||||
|
||||
meta.ci.targets = [
|
||||
"config-flat"
|
||||
"firmware"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue