summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-12-25 22:06:29 -0600
committerKarl Hallsby <karl@hallsby.com>2021-12-25 22:06:29 -0600
commit53e5cab5fb89c6c95f35c1bc56b9f05766b1a46c (patch)
treecce632794b493835f366587638229a7fbee8aa8a
parent15f5e46183d1819dd59dfda45d0f3367ff0fb249 (diff)
Create shell.nix file for creating a dev/flashing shell
-rw-r--r--shell.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..9dc4bd2
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,10 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ name = "moonlander-keyboard";
+ nativeBuildInputs = with pkgs; [
+ wally-cli
+ bashInteractive
+ ];
+
+}