Skip to content

Commit 5ac3e67

Browse files
committed
feat(nix): create dev shell with zmk-cli ready for use
1 parent be3a147 commit 5ac3e67

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

flake.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@
6969
python.west
7070
];
7171
});
72+
devShells.default = self'.devShells.zmk-cli;
73+
devShells.zmk-cli = pkgs.mkShell {
74+
name = "zmk-cli dev shell";
75+
packages = [
76+
self'.packages.zmk-cli
77+
# `zmk-cli` starts `west` processes so we need it to be available
78+
# in the shell environment
79+
python.west
80+
];
81+
};
7282
};
7383
};
7484
}

0 commit comments

Comments
 (0)